15 lines
323 B
Protocol Buffer
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;
|
||
|
}
|