Skip to content

Instantly share code, notes, and snippets.

@psanzay
Last active March 30, 2020 14:41
Show Gist options
  • Save psanzay/cb83762c670fe8c18440ce252c4aa0c1 to your computer and use it in GitHub Desktop.
Save psanzay/cb83762c670fe8c18440ce252c4aa0c1 to your computer and use it in GitHub Desktop.
protocol buffer definition
syntax = "proto3";
message Person {
string name = 1;
string email = 2;
string city = 3;
string state = 4;
string country = 5;
int32 age = 6;
string phone = 7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment