server-master/srcs/WingsAPI.Game/Shops/Event/BuyItemNpcShopEvent.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
278 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Shops.Event;
public class BuyItemNpcShopEvent : PlayerEvent
{
public long OwnerId { get; set; }
public short Slot { get; set; }
public short Amount { get; set; }
public bool Accept { get; set; }
}