fish-station/Content.Server/_Sunrise/Chat/Sanitization/ChatSanitizationEvents.cs
ThereDrD 212372c44d
Фиксы и рефактор чатсана (#2586)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-07-19 09:54:09 +03:00

11 lines
432 B
C#

using Content.Server.Chat.Systems;
namespace Content.Server._Sunrise.Chat.Sanitization;
public sealed class TrySendChatMessageEvent(string message, InGameICChatType? icChatType = null, InGameOOCChatType? oocChatType = null)
: CancellableEntityEventArgs
{
public string Message = message;
public readonly InGameICChatType? IcChatType = icChatType;
public readonly InGameOOCChatType? OocChatType = oocChatType;
}