namespace EDJournal { public class RedeemVoucherEntry : Entry { private int amount = 0; private string type = null; protected override void Initialise() { amount = JSON.Value("Amount"); type = JSON.Value("Type"); } public int Amount => amount; public string Type => type; } }