mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
* Refactor plugins * Add missing names to view models * Cleanups * Replace SalesAppBaseType by two interfaces --------- Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
16 lines
488 B
C#
16 lines
488 B
C#
using System.Collections.Generic;
|
|
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<ItemStats> Entries { get; set; }
|
|
public List<int> SalesCount { get; set; }
|
|
public bool InitialRendering { get; set; }
|
|
}
|