using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class BackpackChange : JournalBase { public ImmutableList Added { get; init; } public ImmutableList Removed { get; init; } } }