using NBitcoin; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace BTCPayServer.Models.StoreViewModels { public class StoresViewModel { public List Stores { get; set; } = new List(); public class StoreViewModel { public string Name { get; set; } public string WebSite { get; set; } public string Id { get; set; } public bool IsOwner { get; set; } public string[] Balances { get; set; } } } }