using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.BUIStates;
[Serializable, NetSerializable]
public sealed class EmergencyConsoleBoundUserInterfaceState : BoundUserInterfaceState
{
///
/// null if we're not early launching.
///
public TimeSpan? EarlyLaunchTime;
public List Authorizations = new();
public int AuthorizationsRequired;
public TimeSpan? TimeToLaunch;
}