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