Greenfield: LNURLPay store payment method fixes (#5446)

This commit is contained in:
d11n
2023-11-02 08:11:32 +01:00
committed by GitHub
parent 609ec0989f
commit 6acc545b66
4 changed files with 14 additions and 6 deletions

View File

@@ -1,8 +1,12 @@
using Newtonsoft.Json;
namespace BTCPayServer.Client.Models
{
public class LNURLPayPaymentMethodBaseData
{
public bool UseBech32Scheme { get; set; }
[JsonProperty("lud12Enabled")]
public bool LUD12Enabled { get; set; }
public LNURLPayPaymentMethodBaseData()