11 lines
No EOL
306 B
C#
11 lines
No EOL
306 B
C#
using WingsEmu.DTOs.Items;
|
|
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Warehouse.Events;
|
|
|
|
public class WarehouseItemPlacedEvent : PlayerEvent
|
|
{
|
|
public ItemInstanceDTO ItemInstance { get; init; }
|
|
public int Amount { get; init; }
|
|
public short DestinationSlot { get; init; }
|
|
} |