namespace Observatory.Framework.Files.Journal
{
///
/// Event generated when using the discovery scanner (honk) to initially scan system.
///
public class FSSDiscoveryScan : JournalBase
{
///
/// Name of the current system.
///
public string SystemName { get; init; }
///
/// Unique ID of the current system.
///
public ulong SystemAddress { get; init; }
///
/// Percentage of current system already scanned.
///
public float Progress { get; init; }
///
/// Number of scannable bodies in system.
///
public int BodyCount { get; init; }
///
/// Number of scannable non-body locations in system.
///
public int NonBodyCount { get; init; }
}
}