mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
16 lines
394 B
C#
16 lines
394 B
C#
|
using BTCPayServer.JsonConverters;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class AppItemStats
|
||
|
{
|
||
|
public string ItemCode { get; set; }
|
||
|
public string Title { get; set; }
|
||
|
public int SalesCount { get; set; }
|
||
|
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal Total { get; set; }
|
||
|
public string TotalFormatted { get; set; }
|
||
|
}
|