mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
18 lines
481 B
C#
18 lines
481 B
C#
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
/// <summary>
|
|
/// Event generated when scanned a populated system's navigation beacon.
|
|
/// </summary>
|
|
public class NavBeaconScan : JournalBase
|
|
{
|
|
/// <summary>
|
|
/// Number of bodies in system.
|
|
/// </summary>
|
|
public int NumBodies { get; init; }
|
|
/// <summary>
|
|
/// Unique ID of system.
|
|
/// </summary>
|
|
public ulong SystemAddress { get; init; }
|
|
}
|
|
}
|