mirror of https://github.com/ivanch/tcc.git
9 lines
163 B
Protocol Buffer
9 lines
163 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message Person {
|
||
|
string name = 1;
|
||
|
int32 age = 2;
|
||
|
repeated string friends = 3;
|
||
|
string email = 4;
|
||
|
string phone = 5;
|
||
|
}
|