34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Application.Contracts
 | |
| {
 | |
|     public class HospitalDTO : HospitalCommand
 | |
|     {
 | |
| 
 | |
|     }
 | |
| 
 | |
|     public class HospitalCommand
 | |
|     {
 | |
|         public Guid? Id { get; set; }
 | |
|         public string HospitalName { get; set; } = String.Empty;
 | |
|         public string UniversityAffiliated { get; set; } = String.Empty;
 | |
|         public string Country { get; set; } = String.Empty;
 | |
|         public string Province { get; set; } = String.Empty;
 | |
|         public string City { get; set; } = String.Empty;
 | |
| 
 | |
| 
 | |
|         public string HospitalNameCN { get; set; } = String.Empty;
 | |
|         public string UniversityAffiliatedCN { get; set; } = String.Empty;
 | |
|         public string CountryCN { get; set; } = String.Empty;
 | |
|         public string ProvinceCN { get; set; } = String.Empty;
 | |
|         public string CityCN { get; set; } = String.Empty;
 | |
| 
 | |
|         public Guid? SiteId { get; set; }
 | |
|     }
 | |
| 
 | |
|     public class HospitalQueryDTO : PageInput
 | |
|     {
 | |
|         public string HospitalName { get; set; } = string.Empty;
 | |
|         public string Province { get; set; } = string.Empty;
 | |
|         public string City { get; set; } = string.Empty;
 | |
|     }
 | |
| }
 |