using Observatory.Framework.Files.ParameterTypes; 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; } } }