Skip to content

Instantly share code, notes, and snippets.

@ErFUN-KH
Created April 8, 2019 21:26
Show Gist options
  • Save ErFUN-KH/b702a01f149cc981e3e3d11744f7bae1 to your computer and use it in GitHub Desktop.
Save ErFUN-KH/b702a01f149cc981e3e3d11744f7bae1 to your computer and use it in GitHub Desktop.
syntax = "proto3";
message Person {
int32 age = 1;
string first_name = 2;
string last_name = 3;
bytes small_picture = 4;
bool is_profile_verified = 5;
float height = 6;
repeated string phone_numbers = 7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment