15 lines
316 B
Protocol Buffer
15 lines
316 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "CmdList.proto";
|
||
|
import "SKBuiltinBuffer_t.proto";
|
||
|
|
||
|
message RemindSyncResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required CmdList _CmdList = 2;
|
||
|
required SKBuiltinBuffer_t _KeyBuff = 3;
|
||
|
required uint32 _ContinueFlag = 4;
|
||
|
}
|