Created
January 30, 2020 11:56
-
-
Save atul161/a634fb96494915f031caa9b75ebdf829 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
//This message contain all the information related employee | |
message Employee{ | |
//name will be the name of an employee | |
string name = 1; | |
//id is the unique id for each employee | |
int32 id = 2; | |
string email = 3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment