82 lines
2.1 KiB
C#
82 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using DataClient.Struct;
|
|
|
|
namespace ApiServer.ApiStruct
|
|
{
|
|
public class PasportCheckApi
|
|
{
|
|
public bool Status { get; set; }
|
|
public DateTime DateAndTime { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
public class PasportCheckClient
|
|
{
|
|
public bool Status { get; set; }
|
|
public bool Exist { get; set; }
|
|
public ulong PaspSum { get; set; }
|
|
}
|
|
public class PasportCreateApi
|
|
{
|
|
public bool Status { get; set; }
|
|
public Pasport Pasp { get; set; }
|
|
}
|
|
public class PasportCreateClient
|
|
{
|
|
public bool Status { get; set; }
|
|
}
|
|
public class PasportGetListApi
|
|
{
|
|
public DateTime Date { get; set; }
|
|
}
|
|
public class PasportGetListClient
|
|
{
|
|
public string[] Name { get; set; }
|
|
public string[] Time { get; set; }
|
|
}
|
|
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; }
|
|
}
|
|
|
|
}
|