2022-04-12 09:55:10 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using BTCPayServer.Data;
|
|
|
|
using BTCPayServer.Services.Apps;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Components.AppTopItems;
|
|
|
|
|
|
|
|
public class AppTopItemsViewModel
|
|
|
|
{
|
2023-03-16 07:51:24 +01:00
|
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string AppType { get; set; }
|
|
|
|
public string Url { get; set; }
|
2022-06-28 07:05:02 +02:00
|
|
|
public List<ItemStats> Entries { get; set; }
|
2023-03-16 07:51:24 +01:00
|
|
|
public List<int> SalesCount { get; set; }
|
2022-07-06 05:40:16 +02:00
|
|
|
public bool InitialRendering { get; set; }
|
2022-04-12 09:55:10 +02:00
|
|
|
}
|