13 lines
246 B
Protocol Buffer
13 lines
246 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "CmdList.proto";
|
|
|
|
message ExtDeviceInitResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional CmdList _CmdList = 2;
|
|
repeated string _ChatContactList = 3;
|
|
}
|