namespace Content.Shared._NF.BindToStation;
///
/// Denotes an entity that can be bound to a station.
/// Can be disabled in child entities to exempt from binding.
///
[RegisterComponent]
public sealed partial class BindToStationComponent : Component
{
///
/// If set to false, this will not be bound to a station.
///
[DataField]
public bool Enabled = true;
}