japanese-pokemon-cards-sdk-.../JpnCardsPokemon.Sdk/Api/CardPrice.cs
2023-03-03 15:23:12 +01:00

21 lines
524 B
C#

using System;
using System.Text.Json.Serialization;
namespace JpnCardsPokemon.Sdk.Api;
public class CardPrice
{
public string? Version { get; set; }
public string? Condition { get; set; }
[JsonPropertyName("priceAmount")] public decimal Price { get; set; }
[JsonPropertyName("priceCurrency")] public string? Currency { get; set; }
[JsonPropertyName("dateUpdated")] public DateTime? UpdatedDate { get; set; }
public string? ListingUrl { get; set; }
public string? Seller { get; set; }
}