namespace EDJournal { public class MultiSellExplorationDataEntry : Entry { private int totalearnings = 0; protected override void Initialise() { totalearnings = JSON.Value("TotalEarnings"); } public int TotalEarnings => totalearnings; } }