Files
Towards/modules/chat_service/chat_client/include/SendChatMessage.hpp
T

14 lines
155 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#pragma once
#include <cstdint>
#include <string>
namespace tw::chat {
struct SendChatMessage {
uint64_t channel_id;
std::string message;
};
}