Applies correct JsonConverter name to existing code after 2182af4f26

This commit is contained in:
Serraniel 2023-03-03 15:42:52 +01:00
parent 2182af4f26
commit 33c96b9375
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -32,7 +32,7 @@ public class Card
// TODO: Type of property is not documented. Has to be evaluated at a later time.
// public Resistance[]? Ressistences { get; set; }
[JsonConverter(typeof(CardPriceConverter))]
[JsonConverter(typeof(CardPricesJsonConverter))]
public IEnumerable<CardPrice>? Prices { get; set; }
[JsonPropertyName("retreatCost")] public string[]? RetreatCosts { get; set; }