mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
9 lines
253 B
C#
9 lines
253 B
C#
namespace BTCPayServer.Security
|
|
{
|
|
public class AuthenticationSchemes
|
|
{
|
|
public const string Cookie = "Identity.Application";
|
|
public const string Bitpay = "Bitpay";
|
|
public const string Greenfield = "Greenfield";
|
|
}
|
|
}
|