13 lines
224 B
Protocol Buffer
13 lines
224 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
|
|
message Donor {
|
|
required uint32 _Time = 1;
|
|
optional string _UserName = 2;
|
|
optional string _NickName = 3;
|
|
optional string _DonateTitle = 4;
|
|
optional string _DonateUrl = 5;
|
|
}
|