WeChatHelper/MMPro/micromsg/proto/StatusNotifyResponse.proto
2024-06-11 08:43:45 +08:00

15 lines
323 B
Protocol Buffer

syntax = "proto2";
package MMPro.micromsg;
import "BaseResponse.proto";
import "ChatContact.proto";
message StatusNotifyResponse {
required BaseResponse _BaseResponse = 1;
required uint32 _MsgId = 2;
optional uint64 _NewMsgId = 3;
optional uint32 _ChatContactCount = 4;
repeated ChatContact _ChatContactList = 5;
}