mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
25 lines
361 B
Protocol Buffer
25 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
package SysMsg;
|
|
|
|
message LikeDetail {
|
|
string txt = 1;
|
|
uint32 uin = 3;
|
|
string nickname = 5;
|
|
}
|
|
|
|
message LikeMsg {
|
|
uint32 count = 1;
|
|
uint32 time = 2;
|
|
LikeDetail detail = 3;
|
|
}
|
|
|
|
message ProfileLikeSubTip {
|
|
LikeMsg msg = 14;
|
|
}
|
|
|
|
message ProfileLikeTip {
|
|
uint32 msgType = 1;
|
|
uint32 subType = 2;
|
|
ProfileLikeSubTip content = 203;
|
|
}
|