This commit is contained in:
2021-07-31 22:27:59 +05:00
parent 39236f43b4
commit 52eaaaac79
505 changed files with 36230 additions and 1019 deletions

View File

@@ -0,0 +1,32 @@
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;
}
}