13 lines
No EOL
382 B
C#
13 lines
No EOL
382 B
C#
using WingsEmu.DTOs.Items;
|
|
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Shops.Event;
|
|
|
|
public class ShopPlayerBoughtItemEvent : PlayerEvent
|
|
{
|
|
public long SellerId { get; init; }
|
|
public string SellerName { get; init; }
|
|
public long TotalPrice { get; init; }
|
|
public int Quantity { get; init; }
|
|
public ItemInstanceDTO ItemInstance { get; init; }
|
|
} |