2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-04 09:33:43 -04:00

Initial Commit

This commit is contained in:
2024-04-13 15:54:59 +10:00
parent 8e178cbb7b
commit 63ed43f4af
459 changed files with 8039 additions and 20504 deletions

View File

@ -1,32 +1,32 @@
using Observatory.Framework.Files.ParameterTypes;
using System.Collections.Immutable;
using System.Collections.Immutable;
using Observatory.Framework.Files.Journal;
using Observatory.Framework.Files.ParameterTypes;
namespace Observatory.Framework.Files
namespace Observatory.Framework.Files;
/// <summary>
/// Elite Dangerous market.json file. Contains details about all available commodities available at the current station.
/// </summary>
public class MarketFile : JournalBase
{
/// <summary>
/// Elite Dangerous market.json file. Contains details about all available commodities available at the current station.
/// Unique ID of current market.
/// </summary>
public class MarketFile : Journal.JournalBase
{
/// <summary>
/// Unique ID of current market.
/// </summary>
public ulong MarketID { get; init; }
/// <summary>
/// Name of the station where the market is located.
/// </summary>
public string StationName { get; init; }
/// <summary>
/// Type of station where the market is located.
/// </summary>
public string StationType { get; init; }
/// <summary>
/// Name of star system where the market is located.
/// </summary>
public string StarSystem { get; init; }
/// <summary>
/// List of all commodities available in the market.
/// </summary>
public ImmutableList<MarketItem> Items { get; init; }
}
}
public ulong MarketID { get; init; }
/// <summary>
/// Name of the station where the market is located.
/// </summary>
public string StationName { get; init; }
/// <summary>
/// Type of station where the market is located.
/// </summary>
public string StationType { get; init; }
/// <summary>
/// Name of star system where the market is located.
/// </summary>
public string StarSystem { get; init; }
/// <summary>
/// List of all commodities available in the market.
/// </summary>
public ImmutableList<MarketItem> Items { get; init; }
}