13 lines
235 B
Protocol Buffer
13 lines
235 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
|
||
|
message DonateHistory {
|
||
|
required uint32 _Time = 1;
|
||
|
optional string _DonateTitle = 2;
|
||
|
optional string _DonateUrl = 3;
|
||
|
required uint32 _Price = 4;
|
||
|
optional string _DonateThumbUrl = 5;
|
||
|
}
|