사용자가 보낸 채팅 메시지를 나타내는 엔티티

interface ChatMessage {
    clientId: string;
    message: string;
    nickname: string;
}

Properties

clientId: string

클라이언트 ID

message: string

채팅 메시지

nickname: string

클라이언트의 닉네임