LSFE/LSFE.Infrastructure/Entities/Auth/Role.cs
2026-07-30 10:31:04 +08:00

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>();
}
}