mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
13 lines
237 B
C#
13 lines
237 B
C#
|
#nullable enable
|
||
|
using BTCPayServer.Data;
|
||
|
using LNURL;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Payments.LNURLPay;
|
||
|
|
||
|
public class StoreLNURLPayRequest : LNURLPayRequest
|
||
|
{
|
||
|
[JsonIgnore]
|
||
|
public StoreData? Store { get; set; }
|
||
|
}
|