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 ServicesViewModel
{
public class LNDServiceViewModel
{
public string Crypto { get; set; }
public string Type { get; set; }
}
public List<LNDServiceViewModel> LNDServices { get; set; } = new List<LNDServiceViewModel>();
}
}