mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
17 lines
525 B
C#
17 lines
525 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
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 AppUrl { get; set; }
|
|
public string DataUrl { get; set; }
|
|
public List<AppItemStats> Entries { get; set; }
|
|
public List<int> SalesCount { get; set; }
|
|
public bool InitialRendering { get; set; }
|
|
}
|