mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-06 07:34:26 +01:00
12 lines
370 B
C#
12 lines
370 B
C#
namespace BTCPayServer.Security
|
|
{
|
|
public class AuthenticationSchemes
|
|
{
|
|
public const string Cookie = "Identity.Application";
|
|
public const string Bitpay = "Bitpay";
|
|
public const string ApiKey = "GreenfieldApiKey";
|
|
public const string Basic = "Basic";
|
|
public const string ApiKeyOrBasic = "Basic,GreenfieldApiKey";
|
|
}
|
|
}
|