using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TSYS_Role { public TSYS_Role() { TSYS_RolePrivs = new HashSet(); TSYS_UserRoles = new HashSet(); } public string C_LicenseCode { get; set; } public Guid C_Code { get; set; } public string C_Name { get; set; } public string C_Description { get; set; } public int? I_Sort { 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 TSYS_License C_LicenseCodeNavigation { get; set; } public virtual ICollection TSYS_RolePrivs { get; set; } public virtual ICollection TSYS_UserRoles { get; set; } } }