mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
26 lines
946 B
C#
26 lines
946 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class LndGrpcServicesViewModel
|
|
{
|
|
public string Host { get; set; }
|
|
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; }
|
|
public string CertificateThumbprint { get; set; }
|
|
[Display(Name = "GRPC SSL Cipher suite (GRPC_SSL_CIPHER_SUITES)")]
|
|
public string GRPCSSLCipherSuites { get; set; }
|
|
public string QRCode { get; set; }
|
|
public string QRCodeLink { get; set; }
|
|
[Display(Name = "REST Uri")]
|
|
public string Uri { get; set; }
|
|
public string ConnectionType { get; internal set; }
|
|
}
|
|
}
|