13 lines
319 B
C#
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; }
|
|
}
|
|
}
|