PSTW_CentralizeSystem/Models/RoleModel.cs
2026-06-04 10:15:56 +08:00

13 lines
319 B
C#

using Microsoft.AspNetCore.Identity;
namespace PSTW_CentralSystem.Models
{
public class RoleModel : IdentityRole<int>
{
public int Id { get; set; }
public string? Description { get; set; }
public string? Name { get; set; }
public string? NormalizedName { get; set; }
}
}