ASCU_ALL/ApiServer/ApiStruct/Pasport.cs
2021-07-31 22:27:59 +05:00

33 lines
728 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using DataClient.Struct;
namespace ApiServer.ApiStruct
{
public class PasportCheckRep
{
public bool HasData { get; set; }
public DateTime DateAndTime { get; set; }
public string Name { get; set; }
}
public class PasportCheckReq
{
public bool Status { get; set; } = true;
public bool Exist { get; set; }
public Pasport Pasp { get; set; }
}
public class PasportCreateRep
{
public bool HasData { get; set; }
public DateTime DateAndTime { get; set; }
public string Name { get; set; }
public Pasport Pasp { get; set; }
}
public class PasportCreateReq
{
public bool Status { get; set; } = true;
}
}