12 lines
154 B
Protocol Buffer
12 lines
154 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package testdata;
|
|
|
|
message Person {
|
|
string name = 1;
|
|
int32 age = 2;
|
|
string address = 3;
|
|
|
|
map<string, Person> children = 10;
|
|
}
|