diff --git a/JpnCardsPokemon.Sdk/Api/Card.cs b/JpnCardsPokemon.Sdk/Api/Card.cs index 14f2989..19ccebf 100644 --- a/JpnCardsPokemon.Sdk/Api/Card.cs +++ b/JpnCardsPokemon.Sdk/Api/Card.cs @@ -1,6 +1,5 @@ using System.Collections.Generic; using System.Text.Json.Serialization; -using JpnCardsPokemon.Sdk.Utils.JsonConverter; namespace JpnCardsPokemon.Sdk.Api; @@ -64,7 +63,6 @@ public class Card /// A list of known prices for this card. /// /// May contain entries from different sellers, versions and conditions. - [JsonConverter(typeof(CardPricesJsonConverter))] public IEnumerable? Prices { get; set; } /// diff --git a/JpnCardsPokemon.Sdk/Api/CardPrice.cs b/JpnCardsPokemon.Sdk/Api/CardPrice.cs index dabcbae..5402a02 100644 --- a/JpnCardsPokemon.Sdk/Api/CardPrice.cs +++ b/JpnCardsPokemon.Sdk/Api/CardPrice.cs @@ -12,6 +12,7 @@ public class CardPrice /// Specifies the card version. Almost always will be 'Regular' but may contain other versions like 'Reverse Holo', /// etc. /// + [JsonPropertyName("variant")] public string? Version { get; set; } /// @@ -48,5 +49,6 @@ public class CardPrice /// /// Name of the seller who is listing the card. /// + [JsonPropertyName("vendor")] public string? Seller { get; set; } } \ No newline at end of file