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;
    }
}