GC-Proto/proto/ChatInfo.proto

23 lines
337 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
message ChatInfo {
2023-01-28 17:00:48 +03:00
message SystemHint {
uint32 type = 14;
}
2022-12-05 15:02:30 +03:00
2023-01-28 17:00:48 +03:00
bool isRead = 6;
uint32 uid = 15;
uint32 toUid = 3;
oneof DNNKFOCELDL {
string text = 1809;
uint32 icon = 1168;
SystemHint system_hint = 523;
}
uint32 sequence = 2;
uint32 time = 11;
2022-11-06 15:30:21 +03:00
}