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.Families.Event;
|
|
|
|
public class FamilyWarehouseItemWithdrawnEvent : PlayerEvent
|
|
{
|
|
public ItemInstanceDTO ItemInstance { get; init; }
|
|
public int Amount { get; init; }
|
|
public short FromSlot { get; init; }
|
|
} |