using Observatory.Framework.Files.ParameterTypes; using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal { /// /// Event written when the surface scan finds signals on the body. /// public class SAASignalsFound : JournalBase { /// /// Unique ID of current system. /// public ulong SystemAddress { get; init; } /// /// Name of the scanned body. /// public string BodyName { get; init; } /// /// ID of the body within the system. /// public int BodyID { get; init; } /// /// List of signals found. /// public ImmutableList Signals { get; init; } } }