13 lines
294 B
C#
13 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace zero.Core.Entities
|
|
{
|
|
public abstract class ZeroIdentityRole : ZeroEntity
|
|
{
|
|
/// <summary>
|
|
/// The role's claims, for use in claims-based authentication.
|
|
/// </summary>
|
|
public List<UserClaim> Claims { get; set; } = new();
|
|
}
|
|
}
|