using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class StoredShips : JournalBase { public ulong MarketID { get; init; } /// /// Name of the station at which this event occurred. /// public string StationName { get; init; } public string StarSystem { get; init; } public ImmutableList ShipsHere { get; init; } public ImmutableList ShipsRemote { get; init; } } }