mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-27 03:11:21 +08:00
29 lines
614 B
Protocol Buffer
29 lines
614 B
Protocol Buffer
syntax = "proto3";
|
|
package SysMessage;
|
|
message Data {
|
|
repeated Header header = 1;
|
|
repeated Body body = 2;
|
|
repeated Other other = 2;
|
|
}
|
|
message Header {
|
|
uint32 PeerNumber = 1;
|
|
string PeerString = 2;
|
|
uint32 Uin = 5;
|
|
optional string Uid = 6;
|
|
}
|
|
message Body {
|
|
uint32 MsgType = 1;
|
|
uint32 SubType_0 = 2;
|
|
uint32 SubType_1 = 3;
|
|
uint32 MsgSeq= 5;
|
|
uint32 Time = 6;
|
|
uint64 MsgID = 12;
|
|
uint32 Other = 13;
|
|
}
|
|
message Event {
|
|
|
|
}
|
|
message Other {
|
|
repeated Event event = 2;
|
|
}
|