2021-07-31 22:27:59 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using DataClient.Struct;
|
|
|
|
|
|
|
|
|
|
namespace ApiServer.ApiStruct
|
|
|
|
|
{
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public class PasportCheckApi
|
2021-07-31 22:27:59 +05:00
|
|
|
|
{
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public bool Status { get; set; }
|
2021-07-31 22:27:59 +05:00
|
|
|
|
public DateTime DateAndTime { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public class PasportCheckClient
|
2021-07-31 22:27:59 +05:00
|
|
|
|
{
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public bool Status { get; set; }
|
2021-07-31 22:27:59 +05:00
|
|
|
|
public bool Exist { get; set; }
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public ulong PaspSum { get; set; }
|
2021-07-31 22:27:59 +05:00
|
|
|
|
}
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public class PasportCreateApi
|
2021-07-31 22:27:59 +05:00
|
|
|
|
{
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public bool Status { get; set; }
|
2021-07-31 22:27:59 +05:00
|
|
|
|
public Pasport Pasp { get; set; }
|
|
|
|
|
}
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public class PasportCreateClient
|
2021-07-31 22:27:59 +05:00
|
|
|
|
{
|
2021-08-01 19:48:09 +05:00
|
|
|
|
public bool Status { get; set; }
|
2021-07-31 22:27:59 +05:00
|
|
|
|
}
|
2021-11-12 15:00:41 +05:00
|
|
|
|
public class PasportGetListApi
|
|
|
|
|
{
|
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
}
|
|
|
|
|
public class PasportGetListClient
|
|
|
|
|
{
|
|
|
|
|
public string[] Name { get; set; }
|
2024-09-22 04:27:05 +05:00
|
|
|
|
public string[] Time { get; set; }
|
2021-11-12 15:00:41 +05:00
|
|
|
|
}
|
2024-09-22 04:27:05 +05:00
|
|
|
|
public class PasportGetPasportApi
|
|
|
|
|
{
|
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
public class PasportGetPasportClient
|
|
|
|
|
{
|
|
|
|
|
public bool HasData { get; set; }
|
|
|
|
|
public byte? NumVDP { get; set; }
|
|
|
|
|
public string DStart { get; set; }
|
|
|
|
|
public string DEnd { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool HasPasport { get; set; }
|
|
|
|
|
public int Kod_npl { get; set; }
|
|
|
|
|
public string Nplav { get; set; }
|
|
|
|
|
public string Rm { get; set; }
|
|
|
|
|
public string Splav { get; set; }
|
|
|
|
|
public string IS { get; set; }
|
|
|
|
|
public ushort Notd { get; set; }
|
|
|
|
|
public ushort Vessl { get; set; }
|
|
|
|
|
public ushort Diam { get; set; }
|
|
|
|
|
public ushort Prpl { get; set; }
|
|
|
|
|
public string Tin { get; set; }
|
|
|
|
|
public string Dzap { get; set; }
|
|
|
|
|
public short Dlog { get; set; }
|
|
|
|
|
public short Last { get; set; }
|
|
|
|
|
public short Dlper { get; set; }
|
|
|
|
|
public string Nazn { get; set; }
|
|
|
|
|
public ushort Kompl { get; set; }
|
|
|
|
|
public ushort Izl { get; set; }
|
|
|
|
|
public float Robm { get; set; }
|
|
|
|
|
public float Rizol { get; set; }
|
|
|
|
|
public ushort Dkr { get; set; }
|
|
|
|
|
public string Nkon { get; set; }
|
|
|
|
|
public string Pos { get; set; }
|
|
|
|
|
public string Ukaz { get; set; }
|
|
|
|
|
public string Zakaz { get; set; }
|
|
|
|
|
public string Kat { get; set; }
|
|
|
|
|
public string Pril { get; set; }
|
|
|
|
|
public string Rezerved { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-31 22:27:59 +05:00
|
|
|
|
}
|