Expose LND gRPC settings

This commit is contained in:
nicolas.dorier
2018-07-22 18:38:14 +09:00
parent 71f6aaabbd
commit 022b4f115d
11 changed files with 378 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class LNDGRPCServicesViewModel
{
public string Host { get; set; }
public int Port { get; set; }
public bool SSL { get; set; }
public string Macaroon { get; set; }
public string CertificateThumbprint { get; set; }
public string QRCode { get; set; }
}
}