mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 09:58:13 +01:00
15 lines
343 B
C#
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";
|
|
}
|
|
}
|
|
}
|