mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
12 lines
342 B
C#
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";
|
|
}
|
|
}
|