btcpayserver/BTCPayServer/Security/APIKeys/APIKeyConstants.cs
2020-03-19 23:43:51 +09:00

15 lines
343 B
C#

using System.Collections.Generic;
using BTCPayServer.Client;
namespace BTCPayServer.Security.APIKeys
{
public static class APIKeyConstants
{
public const string AuthenticationType = "APIKey";
public static class ClaimTypes
{
public const string Permission = "APIKey.Permission";
}
}
}