Files
tbd-station-14/Content.Shared/UserInterface/ToggleIntrinsicUIEvent.cs

13 lines
384 B
C#

using Content.Shared.Actions;
using JetBrains.Annotations;
using Robust.Shared.Serialization.TypeSerializers.Implementations;
namespace Content.Shared.UserInterface;
[UsedImplicitly]
public sealed partial class ToggleIntrinsicUIEvent : InstantActionEvent
{
[DataField("key", customTypeSerializer: typeof(EnumSerializer), required: true)]
public Enum? Key { get; set; }
}