Created
April 8, 2019 21:07
-
-
Save ErFUN-KH/d660d1ae9ae95a0c8101f055fc49b02c to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment