using System.Collections.Generic; using BTCPayServer.Data; using BTCPayServer.Services.Apps; namespace BTCPayServer.Components.AppTopItems; public class AppTopItemsViewModel { public string Id { get; set; } public string Name { get; set; } public string AppType { get; set; } public string Url { get; set; } public List Entries { get; set; } public List SalesCount { get; set; } public bool InitialRendering { get; set; } }