17 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
using System;
 | 
						|
 | 
						|
namespace IRaCIS.Application.Contracts
 | 
						|
{
 | 
						|
    public class SysMessageDTO
 | 
						|
    {
 | 
						|
        public int Id { get; set; }
 | 
						|
        public int ToDoctorId { get; set; }
 | 
						|
        public int FromUserId { get; set; }
 | 
						|
        public string Title { get; set; } = string.Empty;
 | 
						|
        public string Content { get; set; } = string.Empty;
 | 
						|
        public string MessageTime { get; set; } = string.Empty;
 | 
						|
        public bool HasRead { get; set; }
 | 
						|
        public string Memo { get; set; } = string.Empty;
 | 
						|
    }
 | 
						|
}
 |