16 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     public class ImageQA : Entity, IAuditAdd
 | |
|     {
 | |
|         public Guid TrialId { get; set; }
 | |
|         public Guid SiteId { get; set; }
 | |
|         public Guid StudyId { get; set; }
 | |
|         public Guid ParentId { get; set; }
 | |
|         public string CommunicationRecord { get; set; }
 | |
|         public Guid CreateUserId { get; set; }
 | |
|         public DateTime CreateTime { get; set; } = DateTime.Now;
 | |
| 
 | |
|     }
 | |
| } |