using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TSYS_LicenseType { public TSYS_LicenseType() { TSYS_LicenseTypePrivs = new HashSet(); TSYS_Licenses = new HashSet(); } public string C_Code { get; set; } public string C_Name { get; set; } public int I_MaxMemberQty { get; set; } public int I_MaxSpotQty { get; set; } public int I_MaxFileSize { get; set; } public int? I_Sort { get; set; } public string C_Remark { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public Guid? C_LastUpdatedBy { get; set; } public DateTime? D_LastUpdatedOn { get; set; } public string C_Status { get; set; } public virtual TSYS_User C_CreateByNavigation { get; set; } public virtual TSYS_User C_LastUpdatedByNavigation { get; set; } public virtual ICollection TSYS_LicenseTypePrivs { get; set; } public virtual ICollection TSYS_Licenses { get; set; } } }