btcpayserver/BTCPayServer/Payments/LNURLPay/LNURLPaymentMethodConfig.cs
2024-04-04 16:31:04 +09:00

17 lines
332 B
C#

#nullable enable
using System;
using BTCPayServer.Lightning;
using Newtonsoft.Json;
namespace BTCPayServer.Payments.Lightning
{
public class LNURLPaymentMethodConfig
{
public bool UseBech32Scheme { get; set; }
[JsonProperty("lud12Enabled")]
public bool LUD12Enabled { get; set; } = true;
}
}