diff --git a/ObservatoryFramework/Files/BackPackFile.cs b/ObservatoryFramework/Files/BackPackFile.cs
index 6ab7b74..79f2385 100644
--- a/ObservatoryFramework/Files/BackPackFile.cs
+++ b/ObservatoryFramework/Files/BackPackFile.cs
@@ -3,11 +3,26 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files.Journal
{
+ ///
+ /// Elite Dangerous backpack.json file. Describes all the items currently carried by the player.
+ ///
public class BackpackFile : JournalBase
{
+ ///
+ /// List of all items carried.
+ ///
public ImmutableList Items { get; init; }
+ ///
+ /// List of all components carried.
+ ///
public ImmutableList Components { get; init; }
+ ///
+ /// List of player consumable items carried.
+ ///
public ImmutableList Consumables { get; init; }
+ ///
+ /// List of all data currently stored by the player.
+ ///
public ImmutableList Data { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/CargoFile.cs b/ObservatoryFramework/Files/CargoFile.cs
index 5a73886..361bd45 100644
--- a/ObservatoryFramework/Files/CargoFile.cs
+++ b/ObservatoryFramework/Files/CargoFile.cs
@@ -3,10 +3,22 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
+ ///
+ /// Elite Dangerous cargo.json file. Describes the current cargo carried above the player's ship.
+ ///
public class CargoFile : Journal.JournalBase
{
+ ///
+ /// Type of vehicle currently being reported. "Ship" or "SRV".
+ ///
public string Vessel { get; init; }
+ ///
+ /// Number of different types of cargo carried(?)
+ ///
public int Count { get; init; }
+ ///
+ /// List of full cargo details.
+ ///
public ImmutableList Inventory { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/MarketFile.cs b/ObservatoryFramework/Files/MarketFile.cs
index 699a0d3..fb22d0b 100644
--- a/ObservatoryFramework/Files/MarketFile.cs
+++ b/ObservatoryFramework/Files/MarketFile.cs
@@ -3,12 +3,30 @@ 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 long 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; }
}
}
diff --git a/ObservatoryFramework/Files/ModulesInfo.cs b/ObservatoryFramework/Files/ModulesInfo.cs
index 074202a..16dc11c 100644
--- a/ObservatoryFramework/Files/ModulesInfo.cs
+++ b/ObservatoryFramework/Files/ModulesInfo.cs
@@ -3,8 +3,14 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
+ ///
+ /// Information about current player ship equipped modules.
+ ///
public class ModulesInfo : Journal.JournalBase
{
+ ///
+ /// List of all equipped modules.
+ ///
public ImmutableList Modules { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/NavRouteFile.cs b/ObservatoryFramework/Files/NavRouteFile.cs
index d32ee1d..7918788 100644
--- a/ObservatoryFramework/Files/NavRouteFile.cs
+++ b/ObservatoryFramework/Files/NavRouteFile.cs
@@ -3,8 +3,14 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
+ ///
+ /// Elite Dangerous navroute.json file. Contains data about currently plotted FSD jump route.
+ ///
public class NavRouteFile : Journal.JournalBase
{
+ ///
+ /// List of star systems and their locations in the current route.
+ ///
public ImmutableList Route { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/OutfittingFile.cs b/ObservatoryFramework/Files/OutfittingFile.cs
index ba355ff..40600c2 100644
--- a/ObservatoryFramework/Files/OutfittingFile.cs
+++ b/ObservatoryFramework/Files/OutfittingFile.cs
@@ -3,12 +3,30 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
+ ///
+ /// Elite Dangerous outfitting.json file. Contains data about ship modules available for purchase at the current station.
+ ///
public class OutfittingFile : Journal.JournalBase
{
+ ///
+ /// Unique ID of current market.
+ ///
public long 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 ImmutableList Items { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ShipyardFile.cs b/ObservatoryFramework/Files/ShipyardFile.cs
index bd3ab51..547fe2c 100644
--- a/ObservatoryFramework/Files/ShipyardFile.cs
+++ b/ObservatoryFramework/Files/ShipyardFile.cs
@@ -4,12 +4,12 @@ using System.Collections.Immutable;
namespace Observatory.Framework.Files
{
///
- /// Elite Dangerous shipyard.json file.
+ /// Elite Dangerous shipyard.json file. Contains data about ships available for purchase at the current station.
///
public class ShipyardFile : Journal.JournalBase
{
///
- /// Unique ID of market.
+ /// Unique ID of current market.
///
public ulong MarketID { get; init; }
///