13 lines
243 B
Protocol Buffer
13 lines
243 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message AcceptCardItemResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional string _JsonRet = 2;
|
|
optional int32 _RetCode = 3;
|
|
optional string _RetMsg = 4;
|
|
}
|