mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
14 lines
326 B
C#
14 lines
326 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class LNURLPayPaymentMethodBaseData
|
|
{
|
|
public bool UseBech32Scheme { get; set; }
|
|
public bool EnableForStandardInvoices { get; set; }
|
|
public bool LUD12Enabled { get; set; }
|
|
|
|
public LNURLPayPaymentMethodBaseData()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|