mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
adds store data to the filter using a new `StoreLNURLPayRequest` class which simply adds a `Store` member. closes: https://github.com/btcpayserver/btcpayserver/issues/6301
12 lines
237 B
C#
12 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; }
|
|
}
|