10 lines
273 B
C#
10 lines
273 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace LSFE.Infrastructure.Entities.Auth
|
|
{
|
|
public class Role : IdentityRole
|
|
{
|
|
public virtual ICollection<RoleModulePermission> RoleModulePermissions { get; set; }
|
|
= new List<RoleModulePermission>();
|
|
}
|
|
} |