Files
tbd-station-14/Content.Server/DeviceLinking/Components/AutoLinkReceiverComponent.cs
2023-08-08 17:27:16 +10:00

13 lines
329 B
C#

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