server-master/srcs/WingsAPI.Game/Warehouse/Events/WarehouseItemWithdrawnEvent.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
302 B
C#

using WingsEmu.DTOs.Items;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Warehouse.Events;
public class WarehouseItemWithdrawnEvent : PlayerEvent
{
public ItemInstanceDTO ItemInstance { get; init; }
public int Amount { get; init; }
public short FromSlot { get; init; }
}