btcpayserver/BTCPayServer/Models/ServerViewModels/LightningWalletServices.cs

10 lines
249 B
C#
Raw Normal View History

2018-12-14 13:11:55 +09:00
namespace BTCPayServer.Models.ServerViewModels
{
2019-02-22 15:06:52 +09:00
public class LightningWalletServices
2018-12-14 13:11:55 +09:00
{
2019-02-22 15:06:52 +09:00
public string ServiceLink { get; set; }
2018-12-14 13:11:55 +09:00
public bool ShowQR { get; set; }
2019-02-22 15:06:52 +09:00
public string WalletName { get; internal set; }
2018-12-14 13:11:55 +09:00
}
}