13 lines
242 B
Protocol Buffer
13 lines
242 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "ImgPair.proto";
|
|
|
|
message BatchGetHeadImgResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _Count = 2;
|
|
repeated ImgPair _ImgPairList = 3;
|
|
}
|