using Content.Shared.Whitelist;
namespace Content.Server.Shuttles.Components;
[RegisterComponent]
public sealed class FTLDestinationComponent : Component
{
///
/// Should this destination be restricted in some form from console visibility.
///
[ViewVariables(VVAccess.ReadWrite), DataField("whitelist")]
public EntityWhitelist? Whitelist;
///
/// Is this destination visible but available to be warped to?
///
[ViewVariables(VVAccess.ReadWrite), DataField("enabled")]
public bool Enabled = true;
}