mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
12 lines
366 B
C#
12 lines
366 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 = ApiKey + "," + Basic;
|
|
}
|
|
}
|