NahidaImpact/NahidaImpact.Protocol/ChatInfo.proto

22 lines
282 B
Protocol Buffer
Raw Normal View History

2024-01-04 13:48:39 +00:00
syntax = "proto3";
message ChatInfo {
message SystemHint {
uint32 type = 9;
}
uint32 time = 7;
uint32 to_uid = 6;
bool is_read = 4;
uint32 uid = 5;
uint32 sequence = 12;
oneof content {
string text = 408;
uint32 icon = 1308;
SystemHint system_hint = 166;
}
}