Add Lightning page with services (#3308)

* Add Lightning page with services

* Adapt other services pages

* Display Lightning services only for internal node
This commit is contained in:
d11n
2022-01-19 03:52:05 +01:00
committed by GitHub
parent 306ff3d919
commit 51c486c15a
20 changed files with 532 additions and 368 deletions

View File

@@ -0,0 +1,10 @@
namespace BTCPayServer.Models;
public class AdditionalServiceViewModel
{
public string Type { get; set; }
public string DisplayName { get; set; }
public string ServiceName { get; set; }
public string CryptoCode { get; set; }
public string Link { get; set; }
}