10 lines
253 B
C#
10 lines
253 B
C#
using MaksIT.Core.Abstractions;
|
|
|
|
|
|
namespace MaksIT.Core.Security.JWT;
|
|
public class CustomClaims : Enumeration {
|
|
public static readonly CustomClaims AclEntry = new(1, "acl_entry");
|
|
|
|
private CustomClaims(int id, string name) : base(id, name) { }
|
|
}
|