18 lines
424 B
C#
18 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NonaBGS.Journal {
|
|
public class MultiSellExplorationDataEntry : Entry {
|
|
private int totalearnings = 0;
|
|
|
|
protected override void Initialise() {
|
|
totalearnings = JSON.Value<int>("TotalEarnings");
|
|
}
|
|
|
|
public int TotalEarnings => totalearnings;
|
|
}
|
|
}
|