15 lines
322 B
Protocol Buffer
15 lines
322 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "AuthAppBaseInfo.proto";
|
|
|
|
message GetAuthAppInfoResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required AuthAppBaseInfo _BaseInfo = 2;
|
|
optional string _AuthInfo = 3;
|
|
optional string _DevInfo = 4;
|
|
optional string _ExternInfo = 5;
|
|
}
|