namespace EDJournal {
    public class MultiSellExplorationDataEntry : Entry {
        private int totalearnings = 0;

        protected override void Initialise() {
            totalearnings = JSON.Value<int>("TotalEarnings");
        }

        public int TotalEarnings => totalearnings;
    }
}