using Content.Shared.DeviceLinking; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.DeviceLinking.Components { /// /// Sends out a signal to machine linked objects. /// [RegisterComponent] public sealed partial class SignallerComponent : Component { /// /// The port that gets signaled when the switch turns on. /// [DataField("port", customTypeSerializer: typeof(PrototypeIdSerializer))] public string Port = "Pressed"; } }