12 lines
213 B
Protocol Buffer
12 lines
213 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
|
||
|
message LbsRoomResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
optional string _RoomName = 2;
|
||
|
optional string _RoomNickName = 3;
|
||
|
}
|