btcpayserver/BTCPayServer/Payments/LNURLPay/StoreLNURLPayRequest.cs

13 lines
237 B
C#
Raw Normal View History

#nullable enable
using BTCPayServer.Data;
using LNURL;
using Newtonsoft.Json;
namespace BTCPayServer.Payments.LNURLPay;
public class StoreLNURLPayRequest : LNURLPayRequest
{
[JsonIgnore]
public StoreData? Store { get; set; }
}