9 lines
154 B
C#
9 lines
154 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace ROLAC.API.Entities;
|
|
|
|
public class AppRole : IdentityRole
|
|
{
|
|
public string? Description { get; set; }
|
|
}
|