namespace Content.Server.Shuttles.Components; /// /// Lets you remotely control a shuttle. /// [RegisterComponent] public sealed partial class NFDroneConsoleComponent : Component { [DataField(required: true)] public string Id = default!; /// /// that we're proxied into. /// [DataField] public EntityUid? Entity; }