19 lines
441 B
Protocol Buffer
19 lines
441 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseRequest.proto";
|
|
import "ConnectInfoAddr.proto";
|
|
|
|
message BakChatCreateQRCodeRequest {
|
|
required BaseRequest _BaseRequest = 1;
|
|
required uint32 _AddrCount = 2;
|
|
repeated ConnectInfoAddr _AddrList = 3;
|
|
optional string _PCName = 4;
|
|
optional string _PCAcctName = 5;
|
|
required uint32 _Scene = 6;
|
|
optional uint64 _DataSize = 7;
|
|
optional string _WifiName = 8;
|
|
optional int32 _Op = 9;
|
|
}
|