mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
15 lines
440 B
C#
15 lines
440 B
C#
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
public class Undocked : JournalBase
|
|
{
|
|
/// <summary>
|
|
/// Name of the station at which this event occurred.
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|