8 lines
89 B
Protocol Buffer
8 lines
89 B
Protocol Buffer
|
syntax="proto3"
|
||
|
|
||
|
package main;
|
||
|
|
||
|
message Person {
|
||
|
string name =1;
|
||
|
int32 age = 2;
|
||
|
}
|