mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
19 lines
484 B
C#
19 lines
484 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
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; }
|
|
|
|
[JsonExtensionData]
|
|
public Dictionary<string, JToken> AdditionalData { get; set; }
|
|
}
|