btcpayserver/BTCPayServer/Models/ServerViewModels/LndRestServicesViewModel.cs

15 lines
356 B
C#
Raw Normal View History

2018-07-22 18:38:14 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class LndRestServicesViewModel
2018-07-22 18:38:14 +09:00
{
public string BaseApiUrl { get; set; }
2018-07-22 18:38:14 +09:00
public string Macaroon { get; set; }
public string CertificateThumbprint { get; set; }
}
}