mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
18 lines
332 B
C#
18 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;
|
||
|
|
||
|
}
|
||
|
}
|