diff --git a/MarketBuyEntry.cs b/MarketBuyEntry.cs index 93ad0aa..d5a1d36 100644 --- a/MarketBuyEntry.cs +++ b/MarketBuyEntry.cs @@ -7,12 +7,14 @@ using System.Threading.Tasks; namespace EDJournal { public class MarketBuyEntry : Entry { public string Type { get; set; } + public string TypeLocalised { get; set; } public int Count { get; set; } public int BuyPrice { get; set; } public int TotalCost { get; set; } protected override void Initialise() { Type = JSON.Value("Type") ?? ""; + TypeLocalised = JSON.Value("Type_Localised") ?? ""; Count = JSON.Value("Count") ?? 0; BuyPrice = JSON.Value("BuyPrice") ?? 0; TotalCost = JSON.Value("TotalCost") ?? 0;