2023-03-03 13:53:16 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace JpnCardsPokemon.Sdk.Api;
|
|
|
|
|
|
|
|
|
|
public class CardPrice
|
|
|
|
|
{
|
2023-03-03 15:23:12 +01:00
|
|
|
|
public string? Version { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Condition { get; set; }
|
2023-03-03 13:53:16 +01:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("priceAmount")] public decimal Price { get; set; }
|
|
|
|
|
|
2023-03-03 15:23:12 +01:00
|
|
|
|
[JsonPropertyName("priceCurrency")] public string? Currency { get; set; }
|
2023-03-03 13:53:16 +01:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("dateUpdated")] public DateTime? UpdatedDate { get; set; }
|
|
|
|
|
|
2023-03-03 15:26:01 +01:00
|
|
|
|
[JsonPropertyName("listingUrl")] public string? ListingUrl { get; set; }
|
2023-03-03 15:23:12 +01:00
|
|
|
|
|
|
|
|
|
public string? Seller { get; set; }
|
2023-03-03 13:53:16 +01:00
|
|
|
|
}
|