14 lines
292 B
C#
14 lines
292 B
C#
using Content.Shared.Eui;
|
|
using Robust.Shared.Serialization;
|
|
using System;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Administration
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public class SetOutfitEuiState : EuiStateBase
|
|
{
|
|
public EntityUid TargetEntityId;
|
|
}
|
|
}
|