using System.Collections.Immutable; using Observatory.Framework.Files.Journal; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files; /// /// Elite Dangerous outfitting.json file. Contains data about ship modules available for purchase at the current station. /// public class OutfittingFile : JournalBase { public override string Event => "Outfitting"; /// /// Unique ID of current market. /// public ulong MarketID { get; init; } /// /// Name of the station where the market is located. /// public string StationName { get; init; } /// /// Name of the star system where the market is located. /// public string StarSystem { get; init; } /// /// Indicator if the player has access to Horizons content. /// public bool Horizons { get; init; } /// /// List of all available parts in shipyard. /// public IReadOnlyCollection Items { get; init; } }