15 lines
312 B
Protocol Buffer
15 lines
312 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "NBSInfo.proto";
|
||
|
import "SKBuiltinBuffer_t.proto";
|
||
|
|
||
|
message SearchNBSResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint32 _NBSCount = 2;
|
||
|
repeated NBSInfo _NBSList = 3;
|
||
|
required SKBuiltinBuffer_t _PageBuff = 4;
|
||
|
}
|