WeChatHelper/MMPro/micromsg/proto/ClientPerfReportReq.proto
2024-06-11 08:43:45 +08:00

18 lines
415 B
Protocol Buffer

syntax = "proto2";
package MMPro.micromsg;
import "BaseRequest.proto";
import "ClientPerfItem.proto";
message ClientPerfReportReq {
required BaseRequest _BaseRequest = 1;
optional string _DeviceModel = 2;
optional string _DeviceBrand = 3;
optional string _OsName = 4;
optional string _OsVersion = 5;
optional string _LanguageVer = 6;
required uint32 _EventIdCnt = 7;
repeated ClientPerfItem _List = 8;
}