using Observatory.Framework.Files.ParameterTypes;
using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
///
/// Elite Dangerous market.json file. Contains details about all available commodities available at the current station.
///
public class MarketFile : Journal.JournalBase
{
///
/// 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 ImmutableList Items { get; init; }
}
}