mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
10 lines
259 B
C#
10 lines
259 B
C#
|
using LNURL;
|
||
|
|
||
|
namespace BTCPayServer.Plugins;
|
||
|
|
||
|
public class LightningAddressResolver(string username)
|
||
|
{
|
||
|
public string Username { get; set; } = LightningAddressService.NormalizeUsername(username);
|
||
|
public LNURLPayRequest LNURLPayRequest { get; set; }
|
||
|
}
|