10 lines
247 B
C#
10 lines
247 B
C#
using FJPSite.Data.Authorisation;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace FJPSite.Data.Identity;
|
|
|
|
public class RoleEntity : IdentityRole
|
|
{
|
|
public ICollection<RolePermission> Permissions { get; set; } = new List<RolePermission>();
|
|
}
|