16 lines
343 B
Protocol Buffer
16 lines
343 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseRequest.proto";
|
|
|
|
message GetReportStrategyReq {
|
|
required BaseRequest _BaseRequest = 1;
|
|
optional string _DeviceModel = 2;
|
|
optional string _DeviceBrand = 3;
|
|
optional string _OsName = 4;
|
|
optional string _OsVersion = 5;
|
|
optional string _LanguageVer = 6;
|
|
optional int32 _Logid = 7;
|
|
}
|