Files
mixtape/zero.Core/Identity/Models/ZeroIdentityRole.cs
T

12 lines
273 B
C#
Raw Normal View History

2021-11-19 16:11:12 +01:00
using System.Collections.Generic;
2021-11-20 13:52:28 +01:00
namespace zero.Identity;
2021-11-19 16:11:12 +01:00
public abstract class ZeroIdentityRole : ZeroEntity
{
/// <summary>
/// The role's claims, for use in claims-based authentication.
/// </summary>
public List<UserClaim> Claims { get; set; } = new();
}