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