13 lines
240 B
Protocol Buffer
13 lines
240 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message SendC2cSecMsgResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional int32 _ErrCode = 2;
|
|
optional string _ErrMsg = 3;
|
|
optional string _MsgId = 4;
|
|
}
|