Created
April 8, 2019 21:26
-
-
Save ErFUN-KH/b702a01f149cc981e3e3d11744f7bae1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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