server-master/srcs/WingsAPI.Game/Chat/ChatGenericEvent.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
337 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game._packetHandling;
using WingsEmu.Game._playerActionLogs;
namespace WingsEmu.Game.Chat;
public class ChatGenericEvent : PlayerEvent
{
public string Message { get; init; }
public ChatType ChatType { get; init; }
public long? TargetCharacterId { get; init; }
}