mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
13 lines
330 B
C#
13 lines
330 B
C#
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class AppCartItem
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public int Count { get; set; }
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal Price { get; set; }
|
|
}
|