mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
13 lines
405 B
C#
13 lines
405 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";
|
|
public const string PublicInvoices = "publicinvoices";
|
|
}
|
|
}
|