Show REST connection information for LND in a QR Code

This commit is contained in:
nicolas.dorier
2018-12-07 19:31:07 +09:00
parent 591d7b4b80
commit 8afc103ae7
8 changed files with 83 additions and 104 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
@@ -13,5 +14,8 @@ namespace BTCPayServer.Models.ServerViewModels
public string CertificateThumbprint { 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; }
}
}