mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
16 lines
343 B
C#
16 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";
|
|
}
|
|
}
|
|
}
|