btcpayserver/BTCPayServer/ZoneLimits.cs

15 lines
325 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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";
}
}