14 lines
280 B
Protocol Buffer
14 lines
280 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
import "TranslatedMsg.proto";
|
||
|
|
||
|
message GetTransTextResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint32 _MsgCount = 2;
|
||
|
repeated TranslatedMsg _MsgList = 3;
|
||
|
optional string _ToLang = 4;
|
||
|
}
|