13 lines
249 B
Protocol Buffer
13 lines
249 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "AppSetting.proto";
|
||
|
|
||
|
message GetAppSettingResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint32 _AppCount = 2;
|
||
|
repeated AppSetting _SettingList = 3;
|
||
|
}
|