btcpayserver/BTCPayServer/ZoneLimits.cs
2021-03-28 20:56:46 +09:00

12 lines
342 B
C#

namespace BTCPayServer
{
public class ZoneLimits
{
public const string Login = "btcpaylogin";
public const string Register = "btcpayregister";
public const string PayJoin = "PayJoin";
public const string Shopify = nameof(Shopify);
public const string ForgotPassword = "forgotpassword";
}
}