mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
* Add contact link to sidebar Closes #5866. * Obfuscate contact email on public pages Closes #5870. * Fix
25 lines
815 B
C#
25 lines
815 B
C#
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<StoreDerivationScheme> DerivationSchemes { get; set; }
|
|
public List<StoreLightningNode> LightningNodes { get; set; }
|
|
public List<StoreApp> Apps { get; set; }
|
|
public CustodianAccountData[] CustodianAccounts { 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; }
|
|
}
|
|
}
|