15 lines
No EOL
337 B
C#
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; }
|
|
} |