using System.Collections.Generic; using BTCPayServer.Data; using BTCPayServer.Models.StoreViewModels; namespace BTCPayServer.Components.MainNav { public class MainNavViewModel { public StoreData Store { get; set; } public List DerivationSchemes { get; set; } public List LightningNodes { get; set; } public List Apps { get; set; } public bool AltcoinsBuild { get; set; } public int ArchivedAppsCount { get; set; } public string ContactUrl { get; set; } } public class StoreApp { public string Id { get; set; } public string AppName { get; set; } public string AppType { get; set; } } }