14 lines
155 B
C++
14 lines
155 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace tw::chat {
|
||
|
|
|
||
|
|
struct SendChatMessage {
|
||
|
|
uint64_t channel_id;
|
||
|
|
std::string message;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|