Files
mixtape/Finch/Identity/Models/FinchIdentityRole.cs
T
2026-04-07 14:23:29 +02:00

10 lines
241 B
C#

namespace Finch.Identity;
public abstract class FinchIdentityRole : FinchEntity
{
/// <summary>
/// The role's claims, for use in claims-based authentication.
/// </summary>
public List<UserClaim> Claims { get; set; } = new();
}