namespace EDPlayerJournal.Entries;
public class SupercruiseEntryEntry : Entry {
///
/// Taxi?
///
public bool Taxi { get; set; } = false;
///
/// Multicrew or not.
///
public bool Multicrew { get; set; } = false;
///
/// Star system
///
public string? StarSystem { get; set; }
///
/// System address
///
public ulong? SystemAddress { get; set; }
protected override void Initialise() {
Taxi = JSON.Value("Taxi") ?? false;
Multicrew = JSON.Value("Multicrew") ?? false;
StarSystem = JSON.Value("StarSystem");
SystemAddress = JSON.Value("SystemAddress");
}
}