13 lines
250 B
Protocol Buffer
13 lines
250 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "FriendInfo.proto";
|
|
|
|
message SearchFriendResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _FriendCount = 2;
|
|
repeated FriendInfo _FriendList = 3;
|
|
}
|