10 lines
238 B
C#
10 lines
238 B
C#
namespace zero.Identity;
|
|
|
|
public abstract class ZeroIdentityRole : ZeroEntity
|
|
{
|
|
/// <summary>
|
|
/// The role's claims, for use in claims-based authentication.
|
|
/// </summary>
|
|
public List<UserClaim> Claims { get; set; } = new();
|
|
}
|