btcpayserver/BTCPayServer/Payments/LNURLPay/StoreLNURLPayRequest.cs
jackstar12 b670097592
feat: provide store info to modify-lnurlp-request filter (#6312)
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
2024-10-18 14:03:07 +09:00

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; }
}