13 lines
260 B
Protocol Buffer
13 lines
260 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "SnsLbsContactInfo.proto";
|
||
|
|
||
|
message SnsLbsResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint32 _ContactCount = 2;
|
||
|
repeated SnsLbsContactInfo _ContactList = 3;
|
||
|
}
|