14 lines
292 B
Protocol Buffer
14 lines
292 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "DonateHistory.proto";
|
|
|
|
message GetPersonalDonateHistoryResp {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _TotalAmount = 2;
|
|
required uint32 _TotalCount = 3;
|
|
repeated DonateHistory _List = 4;
|
|
}
|