using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.Entities { public class TSYS_MessageFile { [Key] public string C_ID { get; set; } public string C_MessageCode { get; set; } public string C_Url { get; set; } public string C_Type { get; set; } public string C_Text { get; set; } public string C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public string C_LastUpdatedBy { get; set; } public DateTime? D_LastUpdatedOn { get; set; } public string C_Status { get; set; } = "1"; } }