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

19 lines
No EOL
473 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Bazaar.Events;
public class BazaarItemChangePriceEvent : PlayerEvent
{
public BazaarItemChangePriceEvent(long bazaarItemId, long newPricePerItem, bool confirmed)
{
BazaarItemId = bazaarItemId;
NewPricePerItem = newPricePerItem;
Confirmed = confirmed;
}
public long BazaarItemId { get; }
public long NewPricePerItem { get; }
public bool Confirmed { get; }
}