using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NonaBGS.Journal { 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; } }