Files
tbd-station-14/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs

13 lines
337 B
C#

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