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

17 lines
No EOL
499 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.sendbyname.chatmsg")]
public class InterChannelSendChatMsgByNicknameMessage : IMessage
{
public string Nickname { get; set; }
public GameDialogKey DialogKey { get; set; }
public ChatMessageColorType ChatMessageColorType { get; set; }
}
}