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

13 lines
264 B
Protocol Buffer

syntax = "proto2";
package MMPro.micromsg;
import "BaseResponse.proto";
import "RemindItem.proto";
message BatchGetRemindInfoResponse {
required BaseResponse _BaseResponse = 1;
required uint32 _RemindInfoCount = 2;
repeated RemindItem _RemindInfoList = 3;
}