mu-protobuf-0.4.1.0: test/protobuf/example.proto
syntax = "proto3";
message person {
string firstName = 1;
string lastName = 2;
int32 age = 3;
gender gender = 4;
address address = 5;
repeated int32 lucky_numbers = 6 [packed=true];
map<string, int32> things = 7;
}
message address {
string postcode = 1;
string country = 2;
}
enum gender {
nb = 0;
male = 1;
female = 2;
}