using System.Collections.Immutable; using Observatory.Framework.Files.Journal; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files; /// /// Elite Dangerous backpack.json file. Describes all the items currently carried by the player. /// public class BackpackFile : JournalBase { public override string Event => "Backpack"; /// /// List of all items carried. /// public IReadOnlyCollection Items { get; init; } /// /// List of all components carried. /// public IReadOnlyCollection Components { get; init; } /// /// List of player consumable items carried. /// public IReadOnlyCollection Consumables { get; init; } /// /// List of all data currently stored by the player. /// public IReadOnlyCollection Data { get; init; } }