Spaces:
Running
Running
| using System; | |
| using System.Collections.Generic; | |
| namespace TaskTrackingSystem.Database.AppDbContextModels; | |
| public partial class Role | |
| { | |
| public long Id { get; set; } | |
| public string Name { get; set; } = null!; | |
| public string? Description { get; set; } | |
| public DateTime? CreatedAt { get; set; } | |
| public long? CreatedBy { get; set; } | |
| public DateTime? UpdatedAt { get; set; } | |
| public long? UpdatedBy { get; set; } | |
| public bool IsDeleted { get; set; } | |
| public virtual ICollection<RoleMenu> RoleMenus { get; set; } = new List<RoleMenu>(); | |
| public virtual ICollection<RolePermission> RolePermissions { get; set; } = new List<RolePermission>(); | |
| public virtual ICollection<User> Users { get; set; } = new List<User>(); | |
| } | |