server-master/srcs/_plugins/WingsEmu.Plugins.DistributedGameEvents/InterChannel/BazaarNotificationMessage.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
372 B
C#

using PhoenixLib.ServiceBus;
using PhoenixLib.ServiceBus.Routing;
namespace WingsEmu.Plugins.DistributedGameEvents.InterChannel
{
[MessageType("bazaar.notification")]
public class BazaarNotificationMessage : IMessage
{
public string OwnerName { get; set; }
public int ItemVnum { get; set; }
public int Amount { get; set; }
}
}