mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 14:04:12 +01:00
11 lines
414 B
C#
11 lines
414 B
C#
namespace BTCPayServer.Security
|
|
{
|
|
public class AuthenticationSchemes
|
|
{
|
|
public const string Cookie = "Identity.Application";
|
|
public const string Bitpay = "Bitpay";
|
|
public const string Greenfield = "Greenfield.APIKeys,Greenfield.Basic";
|
|
public const string GreenfieldAPIKeys = "Greenfield.APIKeys";
|
|
public const string GreenfieldBasic = "Greenfield.Basic";
|
|
}
|
|
}
|