mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
17 lines
338 B
C#
17 lines
338 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class LNURLPayPaymentMethodBaseData
|
|
{
|
|
public bool UseBech32Scheme { get; set; }
|
|
|
|
[JsonProperty("lud12Enabled")]
|
|
public bool LUD12Enabled { get; set; }
|
|
|
|
public LNURLPayPaymentMethodBaseData()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|