mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Displaying LND Rest connection info in Services * Code cleanup * Tweaking UI * Fix typo
14 lines
356 B
C#
14 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class LndRestServicesViewModel
|
|
{
|
|
public string BaseApiUrl { get; set; }
|
|
public string Macaroon { get; set; }
|
|
public string CertificateThumbprint { get; set; }
|
|
}
|
|
}
|