using System.Collections.Immutable; using Observatory.Framework.Files.Journal; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files; /// /// Elite Dangerous market.json file. Contains details about all available commodities available at the current station. /// public class MarketFile : JournalBase { public override string Event => "Market"; /// /// Unique ID of current market. /// public ulong MarketID { get; init; } /// /// Name of the station where the market is located. /// public string StationName { get; init; } /// /// Type of station where the market is located. /// public string StationType { get; init; } /// /// Name of star system where the market is located. /// public string StarSystem { get; init; } /// /// List of all commodities available in the market. /// public IReadOnlyCollection Items { get; init; } }