15 lines
330 B
Protocol Buffer
15 lines
330 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "EmotionDonor.proto";
|
|
import "SKBuiltinBuffer_t.proto";
|
|
|
|
message GetEmotionDonorListResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _DonorNum = 2;
|
|
repeated EmotionDonor _Donors = 3;
|
|
optional SKBuiltinBuffer_t _RespBuf = 4;
|
|
}
|