using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EDJournal { public class CommanderEntry : Entry { public string Name { get; set; } public string FID { get; set; } protected override void Initialise() { Name = JSON.Value("Name") ?? ""; FID = JSON.Value("FID") ?? ""; } } }