10 lines
145 B
Protocol Buffer
10 lines
145 B
Protocol Buffer
package pkg1;
|
|
syntax = "proto3";
|
|
|
|
message User {
|
|
int32 id = 1;
|
|
string name = 2;
|
|
int32 age = 3;
|
|
repeated string emails = 4;
|
|
|
|
} |