using System.Collections.Immutable; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files.Journal.Startup; public class Missions : JournalBase { public override string Event => "Missions"; public IReadOnlyCollection Active { get; init; } public IReadOnlyCollection Failed { get; init; } public IReadOnlyCollection Complete { get; init; } }