using Robust.Shared.Serialization; namespace Content.Shared.DragDrop { /// /// Raised on the client to the server requesting a drag-drop. /// [Serializable, NetSerializable] public sealed class DragDropRequestEvent : EntityEventArgs { /// /// Entity that was dragged and dropped. /// public NetEntity Dragged { get; } /// /// Entity that was drag dropped on. /// public NetEntity Target { get; } public DragDropRequestEvent(NetEntity dragged, NetEntity target) { Dragged = dragged; Target = target; } } }