Work
This commit is contained in:
32
ApiServer/ApiStruct/Pasport.cs
Normal file
32
ApiServer/ApiStruct/Pasport.cs
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user