1
0

AutoLinkReceiverComponent.cs 337 B

123456789101112
  1. namespace Content.Server.DeviceLinking.Components;
  2. /// <summary>
  3. /// This is used for automatic linkage with buttons and other transmitters.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class AutoLinkReceiverComponent : Component
  7. {
  8. [DataField("channel", required: true)]
  9. public string AutoLinkChannel = default!;
  10. }