Files
btcpayserver/BTCPayServer/Models/ServerViewModels/LightningWalletServices.cs
2020-06-28 21:44:35 -05:00

15 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class LightningWalletServices
{
public string ServiceLink { get; set; }
public bool ShowQR { get; set; }
public string WalletName { get; internal set; }
}
}