namespace EDJournal { public class SellMicroResourcesEntry : Entry { private int price; protected override void Initialise() { price = JSON.Value("Price"); } public int Price => price; } }