16 lines
349 B
Protocol Buffer
16 lines
349 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message UploadVideoResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional string _ClientMsgId = 2;
|
|
required uint32 _MsgId = 3;
|
|
required uint32 _ThumbStartPos = 4;
|
|
required uint32 _VideoStartPos = 5;
|
|
optional uint64 _NewMsgId = 6;
|
|
optional string _AESKey = 7;
|
|
}
|