mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
20 lines
510 B
C#
20 lines
510 B
C#
#nullable enable
|
|
using System;
|
|
using BTCPayServer.Lightning;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Payments.Lightning
|
|
{
|
|
public class LNURLPaySupportedPaymentMethod : ISupportedPaymentMethod
|
|
{
|
|
public string CryptoCode { get; set; } = string.Empty;
|
|
|
|
[JsonIgnore]
|
|
public PaymentMethodId PaymentId => new PaymentMethodId(CryptoCode, PaymentTypes.LNURLPay);
|
|
|
|
public bool UseBech32Scheme { get; set; }
|
|
|
|
public bool LUD12Enabled { get; set; } = true;
|
|
|
|
}
|
|
}
|