add type localised to market buy

This commit is contained in:
Florian Stinglmayr 2022-01-26 09:39:17 +01:00
parent 370cd09866
commit 47cb08b799

View File

@ -7,12 +7,14 @@ using System.Threading.Tasks;
namespace EDJournal { namespace EDJournal {
public class MarketBuyEntry : Entry { public class MarketBuyEntry : Entry {
public string Type { get; set; } public string Type { get; set; }
public string TypeLocalised { get; set; }
public int Count { get; set; } public int Count { get; set; }
public int BuyPrice { get; set; } public int BuyPrice { get; set; }
public int TotalCost { get; set; } public int TotalCost { get; set; }
protected override void Initialise() { protected override void Initialise() {
Type = JSON.Value<string>("Type") ?? ""; Type = JSON.Value<string>("Type") ?? "";
TypeLocalised = JSON.Value<string>("Type_Localised") ?? "";
Count = JSON.Value<int?>("Count") ?? 0; Count = JSON.Value<int?>("Count") ?? 0;
BuyPrice = JSON.Value<int?>("BuyPrice") ?? 0; BuyPrice = JSON.Value<int?>("BuyPrice") ?? 0;
TotalCost = JSON.Value<int?>("TotalCost") ?? 0; TotalCost = JSON.Value<int?>("TotalCost") ?? 0;