19 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     public class QANoticeUser:Entity
 | |
|     {
 | |
|         public Guid SubjectVisitId { get; set; }
 | |
| 
 | |
|         public Guid QANoticeId { get; set; } = Guid.Empty;
 | |
| 
 | |
|         public Guid ToUserId { get; set; } = Guid.Empty;
 | |
| 
 | |
|         public string ToUser { get; set; }
 | |
| 
 | |
|         public string ToUserType { get; set; }
 | |
| 
 | |
|         
 | |
|     }
 | |
| } |