17 lines
394 B
Protocol Buffer
17 lines
394 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message CDNUploadMsgImgPrepareResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional string _ClientImgId = 3;
|
|
optional string _FromUserName = 4;
|
|
optional string _ToUserName = 5;
|
|
required uint32 _CreateTime = 9;
|
|
optional uint64 _NewMsgId = 10;
|
|
optional string _AESKey = 11;
|
|
optional string _FileId = 12;
|
|
}
|