btcpayserver/BTCPayServer.Client/Models/LNURLPayPaymentMethodBaseData.cs

15 lines
326 B
C#
Raw Normal View History

2021-12-31 16:59:02 +09:00
namespace BTCPayServer.Client.Models
{
public class LNURLPayPaymentMethodBaseData
{
public bool UseBech32Scheme { get; set; }
public bool EnableForStandardInvoices { get; set; }
public bool LUD12Enabled { get; set; }
public LNURLPayPaymentMethodBaseData()
{
2021-12-31 16:59:02 +09:00
}
}
}