13 lines
246 B
Protocol Buffer
13 lines
246 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "BizAppInfo.proto";
|
||
|
|
||
|
message GetAppInfoListResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required int32 _Count = 2;
|
||
|
repeated BizAppInfo _AppInfoList = 3;
|
||
|
}
|