Can show external service link with BTCPAY_EXTERNALSERVICES

This commit is contained in:
nicolas.dorier
2018-12-07 18:42:39 +09:00
parent 2162afc78e
commit 591d7b4b80
7 changed files with 78 additions and 8 deletions

View File

@@ -15,7 +15,13 @@ namespace BTCPayServer.Models.ServerViewModels
public int Index { get; set; }
}
public class ExternalService
{
public string Name { get; set; }
public string Link { get; set; }
}
public List<LNDServiceViewModel> LNDServices { get; set; } = new List<LNDServiceViewModel>();
public bool HasSSH { get; set; }
public List<ExternalService> ExternalServices { get; set; } = new List<ExternalService>();
}
}