12 lines
236 B
Protocol Buffer
12 lines
236 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "AutoAuthRsaReqData.proto";
|
||
|
import "AutoAuthAesReqData.proto";
|
||
|
|
||
|
message AutoAuthRequest {
|
||
|
required AutoAuthRsaReqData _RsaReqData = 1;
|
||
|
required AutoAuthAesReqData _AesReqData = 2;
|
||
|
}
|