2018-07-22 18:38:14 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-12-07 19:31:07 +09:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-07-22 18:38:14 +09:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
|
|
|
{
|
2018-10-27 08:49:39 -05:00
|
|
|
|
public class LndGrpcServicesViewModel
|
2018-07-22 18:38:14 +09:00
|
|
|
|
{
|
|
|
|
|
public string Host { get; set; }
|
|
|
|
|
public bool SSL { get; set; }
|
|
|
|
|
public string Macaroon { get; set; }
|
2018-12-20 16:52:04 +09:00
|
|
|
|
public string AdminMacaroon { get; set; }
|
|
|
|
|
public string ReadonlyMacaroon { get; set; }
|
|
|
|
|
public string InvoiceMacaroon { get; set; }
|
2018-07-22 18:38:14 +09:00
|
|
|
|
public string CertificateThumbprint { get; set; }
|
2018-12-20 14:16:23 +09:00
|
|
|
|
[Display(Name = "GRPC SSL Cipher suite (GRPC_SSL_CIPHER_SUITES)")]
|
|
|
|
|
public string GRPCSSLCipherSuites { get; set; }
|
2018-07-22 18:38:14 +09:00
|
|
|
|
public string QRCode { get; set; }
|
2018-07-22 21:28:21 +09:00
|
|
|
|
public string QRCodeLink { get; set; }
|
2018-12-07 19:31:07 +09:00
|
|
|
|
[Display(Name = "REST Uri")]
|
|
|
|
|
public string Uri { get; set; }
|
|
|
|
|
public string ConnectionType { get; internal set; }
|
2018-07-22 18:38:14 +09:00
|
|
|
|
}
|
|
|
|
|
}
|