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

17 lines
No EOL
503 B
C#

using PhoenixLib.ServiceBus;
using PhoenixLib.ServiceBus.Routing;
using WingsEmu.Game._i18n;
using WingsEmu.Packets.Enums.Chat;
namespace WingsEmu.Plugins.DistributedGameEvents.InterChannel
{
[MessageType("interchannel.broadcast.chatmessage")]
public class InterChannelChatMessageBroadcastMessage : IMessage
{
public GameDialogKey DialogKey { get; set; }
public ChatMessageColorType ChatMessageColorType { get; set; }
public object?[] Args { get; set; }
}
}