17 lines
439 B
C#
17 lines
439 B
C#
|
using System;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace JpnCardsPokemon.Sdk.Api;
|
|||
|
|
|||
|
public class CardPrice
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|