ASCU_ALL/ApiServer/ApiStruct/Pasport.cs

32 lines
639 B
C#
Raw Normal View History

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-08-01 19:48:09 +05:00
2021-07-31 22:27:59 +05:00
}