using Content.Shared.Medical.SuitSensor;
namespace Content.Server.Medical.CrewMonitoring;
[RegisterComponent]
[Access(typeof(CrewMonitoringConsoleSystem))]
public sealed partial class CrewMonitoringConsoleComponent : Component
{
///
/// List of all currently connected sensors to this console.
///
public Dictionary ConnectedSensors = new();
///
/// After what time sensor consider to be lost.
///
[DataField("sensorTimeout"), ViewVariables(VVAccess.ReadWrite)]
public float SensorTimeout = 10f;
}