Delta-v/Content.Server/MachineLinking/Components/AutoLinkReceiverComponent.cs

13 lines
346 B
C#

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