Last active
March 30, 2020 14:41
-
-
Save psanzay/cb83762c670fe8c18440ce252c4aa0c1 to your computer and use it in GitHub Desktop.
protocol buffer definition
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 { | |
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