14 lines
310 B
C#
14 lines
310 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
using Robust.Shared.Network;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Administration.Events
|
|||
|
|
{
|
|||
|
|
[NetSerializable, Serializable]
|
|||
|
|
public class PlayerInfoRemovalMessage : EntityEventArgs
|
|||
|
|
{
|
|||
|
|
public NetUserId NetUserId;
|
|||
|
|
}
|
|||
|
|
}
|