btcpayserver/BTCPayServer/Security/GreenField/GreenFieldConstants.cs

13 lines
292 B
C#
Raw Normal View History

2020-03-27 12:58:45 +09:00
namespace BTCPayServer.Security.GreenField
{
public static class GreenFieldConstants
{
public const string AuthenticationType = "GreenField";
public static class ClaimTypes
{
public const string Permission = "APIKey.Permission";
}
}
}