LSFE/LSFE.Infrastructure/Entities/Auth/AuthorizeRoles.cs
2026-07-30 10:31:04 +08:00

17 lines
476 B
C#

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; }
}
}