using Content.Server.Station.Systems; namespace Content.Server.Station.Components; /// /// Indicates that a grid is a member of the given station. /// [RegisterComponent, Friend(typeof(StationSystem))] public sealed class StationMemberComponent : Component { /// /// Station that this grid is a part of. /// [ViewVariables] public EntityUid Station = EntityUid.Invalid; }