using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class BackpackFile : JournalBase { public ImmutableList Items { get; init; } public ImmutableList Components { get; init; } public ImmutableList Consumables { get; init; } public ImmutableList Data { get; init; } } }