29 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Core.Application.Contracts;
 | |
| 
 | |
| public class SignDTO
 | |
| {
 | |
|     public string UserName { get; set; } = string.Empty;
 | |
| 
 | |
|     public string PassWord { get; set; } = string.Empty;
 | |
| 
 | |
|     public string SignText { get; set; } = string.Empty;
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
|     public Guid? TrialId { get; set; }
 | |
| 
 | |
|     public Guid? SignCodeId { get; set; }
 | |
| 
 | |
| 
 | |
|     public string SignCode { get; set; } = string.Empty;
 | |
| 
 | |
|     public Guid? SubjectVisitId { get; set; }
 | |
| 
 | |
| 
 | |
| 
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 |