namespace Observatory.Framework.Files.Journal.Travel; public class Undocked : JournalBase { public override string Event => "Undocked"; /// /// Name of the station at which this event occurred. /// public string StationName { get; init; } public string StationType { get; init; } public ulong MarketID { get; init; } public bool Taxi { get; init; } public bool Multicrew { get; init; } }