edjournal/MultiSellExplorationDataEntry.cs

12 lines
301 B
C#
Raw Permalink Normal View History

2021-08-25 18:24:44 +02:00
namespace EDJournal {
public class MultiSellExplorationDataEntry : Entry {
private int totalearnings = 0;
protected override void Initialise() {
totalearnings = JSON.Value<int>("TotalEarnings");
}
public int TotalEarnings => totalearnings;
}
}