12 lines
301 B
C#
12 lines
301 B
C#
|
namespace EDJournal {
|
|||
|
public class MultiSellExplorationDataEntry : Entry {
|
|||
|
private int totalearnings = 0;
|
|||
|
|
|||
|
protected override void Initialise() {
|
|||
|
totalearnings = JSON.Value<int>("TotalEarnings");
|
|||
|
}
|
|||
|
|
|||
|
public int TotalEarnings => totalearnings;
|
|||
|
}
|
|||
|
}
|