using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { public class Missions : JournalBase { public ImmutableList Active { get; init; } public ImmutableList Failed { get; init; } public ImmutableList Complete { get; init; } } }