server-master/srcs/_plugins/WingsEmu.Plugins.DistributedGameEvents/InterChannel/InterChannelSendChatMsgByCharIdMessage.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.sendbycharid.chatmsg")]
public class InterChannelSendChatMsgByCharIdMessage : IMessage
{
public long CharacterId { get; set; }
public GameDialogKey DialogKey { get; set; }
public ChatMessageColorType ChatMessageColorType { get; set; }
}
}