using CPRNIMS.Infrastructure.Entities.Common; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.Account { public class AuthorizeRoles : CommonProperties { [Key] public int AuthorizeRoleId { get; set; } public string? RoleId { get; set; } public string? Name { get; set; } public string? Controller { get; set; } public bool IsActive { get; set; } } }