using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using BTCPayServer.Configuration.External; namespace BTCPayServer.Models.ServerViewModels { public class ServicesViewModel { public class LNDServiceViewModel { public string Crypto { get; set; } public LndTypes Type { get; set; } public int Index { get; set; } } public class ExternalService { public string Name { get; set; } public string Link { get; set; } } public List LNDServices { get; set; } = new List(); public List ExternalServices { get; set; } = new List(); } }