11 lines
No EOL
278 B
C#
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; }
|
|
} |