mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
18 lines
338 B
C#
18 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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|