10 lines
189 B
C#
10 lines
189 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace PSTW_CentralSystem.Models
|
|
{
|
|
public class RoleModel : IdentityRole<int>
|
|
{
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|