btcpayserver/BTCPayServer/Models/ServerViewModels/LndServicesViewModel.cs

24 lines
878 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System.ComponentModel.DataAnnotations;
2018-07-22 18:38:14 +09:00
namespace BTCPayServer.Models.ServerViewModels
{
public class LndServicesViewModel
2018-07-22 18:38:14 +09:00
{
public string Host { get; set; }
[Display(Name = "Use SSL")]
2018-07-22 18:38:14 +09:00
public bool SSL { get; set; }
public string Macaroon { get; set; }
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; }
[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; }
[Display(Name = "REST Uri")]
public string Uri { get; set; }
public string ConnectionType { get; internal set; }
2018-07-22 18:38:14 +09:00
}
}