mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
04ba1430ca
* Refactor plugins * Add missing names to view models * Cleanups * Replace SalesAppBaseType by two interfaces --------- Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
18 lines
535 B
C#
18 lines
535 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Services.Apps;
|
|
|
|
namespace BTCPayServer.Components.AppSales;
|
|
|
|
public class AppSalesViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string AppType { get; set; }
|
|
public AppSalesPeriod Period { get; set; }
|
|
public string AppUrl { get; set; }
|
|
public string DataUrl { get; set; }
|
|
public long SalesCount { get; set; }
|
|
public IEnumerable<SalesStatsItem> Series { get; set; }
|
|
public bool InitialRendering { get; set; }
|
|
}
|