mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
17 lines
478 B
C#
17 lines
478 B
C#
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 bool SSL { get; set; }
|
|
public string Macaroon { get; set; }
|
|
public string CertificateThumbprint { get; set; }
|
|
public string QRCode { get; set; }
|
|
public string QRCodeLink { get; set; }
|
|
}
|
|
}
|