mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
14 lines
337 B
C#
14 lines
337 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Data;
|
||
|
using BTCPayServer.Services.Apps;
|
||
|
|
||
|
namespace BTCPayServer.Components.AppSales;
|
||
|
|
||
|
public class AppSalesViewModel
|
||
|
{
|
||
|
public AppData App { get; set; }
|
||
|
public int SalesCount { get; set; }
|
||
|
public IEnumerable<SalesStatsItem> Series { get; set; }
|
||
|
}
|