10 lines
125 B
Protocol Buffer
10 lines
125 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
|
||
|
message Discount {
|
||
|
optional string _Title = 1;
|
||
|
required uint32 _Price = 2;
|
||
|
}
|