13 lines
249 B
Protocol Buffer
13 lines
249 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "UserGameWishInfo.proto";
|
|
|
|
message GameWishListResp {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required int32 _Count = 2;
|
|
repeated UserGameWishInfo _WishList = 3;
|
|
}
|