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

11 lines
No EOL
298 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Bazaar.Events;
public class BazaarItemRemovedEvent : PlayerEvent
{
public int ItemVnum { get; init; }
public short SoldAmount { get; init; }
public short Amount { get; init; }
public long TotalProfit { get; init; }
}