using System; namespace DeviceRepair.Models.SFC { public class TsSFCAuths { public int Id { get; set; } public string AuthCode { get; set; } public string AuthName { get; set; } public string FatherAuthCode { get; set; } public string CreateBy { get; set; } public DateTime CreateOn { get; set; } public string ModifyBy { get; set; } public DateTime ModifyOn { get; set; } public string Note { get; set; } } }