namespace Observatory.Framework.Files.Journal
{
///
/// Event generated when a signal source is identified or scanned.
///
public class FSSSignalDiscovered : JournalBase
{
///
/// Name of the signal type.
///
public string SignalName { get; init; }
///
/// Localised name of the signal type.
///
public string SignalName_Localised { get; init; }
///
/// Type of signal location.
///
public string SignalType { get; init; }
///
/// Faction state or circumstance that caused this signal to appear.
///
public string SpawningState { get; init; }
///
/// Localised description of spawning state.
///
public string SpawningState_Localised { get; init; }
///
/// Faction name which is associated with this signal.
///
public string SpawningFaction { get; init; }
///
/// Localised name of the associated faction.
///
public string SpawningFaction_Localised { get; init; }
///
/// Time until the signal despawns, in seconds.
///
public float TimeRemaining { get; init; }
///
/// Unique ID of current system.
///
public ulong SystemAddress { get; init; }
///
/// Numeric representation of the signal threat level.
///
public int ThreatLevel { get; init; }
///
/// Type of signal.
///
public string USSType { get; init; }
///
/// Localised name of signal type.
///
public string USSType_Localised { get; init; }
///
/// Indicator if the signal is a station which can be docked with.
///
public bool IsStation { get; init; }
}
}