namespace Observatory.Framework.Files.Journal
{
///
/// Event generated when all bodies within a system have been scanned.
///
public class FSSAllBodiesFound : JournalBase
{
///
/// Name of the system.
///
public string SystemName { get; init; }
///
/// Unique ID of the system.
///
public ulong SystemAddress { get; init; }
///
/// Count of all scanned bodies in system.
///
public int Count { get; init; }
}
}