Files

14 lines
155 B
C++
Raw Permalink 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;
};
}