mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
19 lines
266 B
Protocol Buffer
19 lines
266 B
Protocol Buffer
syntax = "proto3";
|
|
package SysMessage;
|
|
|
|
message likeDetail {
|
|
string txt = 1;
|
|
int64 uin = 3;
|
|
string nickname = 5;
|
|
}
|
|
|
|
message likeMsg {
|
|
int32 times = 1;
|
|
int32 time = 2;
|
|
likeDetail detail = 3;
|
|
}
|
|
|
|
message profileLikeTip {
|
|
likeMsg msg = 14;
|
|
}
|