btcpayserver/BTCPayServer/ZoneLimits.cs

12 lines
343 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-26 10:01:45 +01:00
public static string ForgotPassword = "forgotpassword";
}
}