mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
21 lines
510 B
C#
21 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;
|
|
|
|
}
|
|
}
|