mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
13 lines
349 B
C#
13 lines
349 B
C#
namespace BTCPayServer.Security.Greenfield
|
|
{
|
|
public static class GreenfieldConstants
|
|
{
|
|
public const decimal MaxAmount = ulong.MaxValue;
|
|
public const string AuthenticationType = "Greenfield";
|
|
|
|
public static class ClaimTypes
|
|
{
|
|
public const string Permission = "APIKey.Permission";
|
|
}
|
|
}
|
|
}
|