12 lines
192 B
Protocol Buffer
12 lines
192 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
|
|
message TrackPOIItem {
|
|
required double _Latitude = 1;
|
|
required double _Longitude = 2;
|
|
optional string _Name = 3;
|
|
optional string _Addr = 4;
|
|
}
|