btcpayserver/BTCPayServer/ZoneLimits.cs

13 lines
405 B
C#
Raw Normal View History

namespace BTCPayServer
{
public class ZoneLimits
{
public const string Login = "btcpaylogin";
public const string Register = "btcpayregister";
2020-01-06 13:57:32 +01:00
public const string PayJoin = "PayJoin";
public const string Shopify = nameof(Shopify);
2021-03-28 13:56:46 +02:00
public const string ForgotPassword = "forgotpassword";
public const string PublicInvoices = "publicinvoices";
}
}