using System.Collections.Immutable;
using Observatory.Framework.Files.ParameterTypes;
namespace Observatory.Framework.Files.Journal.StationServices;
public class StoredShips : JournalBase
{
public override string Event => "StoredShips";
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 List ShipsHere { get; init; }
public List ShipsRemote { get; init; }
}