using System.ComponentModel.DataAnnotations; namespace LSFE.Infrastructure.Entities.Auth { public class AuthorizeRoles { [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; } public DateTime CreatedAt { get; set; } public string? CreatedBy { get; set; } } }