Files
LLOneBot/src/ntqqapi/proto/profileLikeTip.proto
idranme cad09b2ed1 fix
2024-09-14 19:56:46 +08:00

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;
}