32 lines
		
	
	
		
			639 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			639 B
		
	
	
	
		
			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; }
 | 
						|
	}
 | 
						|
 | 
						|
}
 |