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 Employee { | |
string first_name = 1; | |
string last_name = 2; | |
Date doj = 3; | |
} | |
message Date { | |
int32 year = 1; |
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 Employee { | |
string first_name = 1; | |
string last_name = 2; | |
int32 emp_id = 3; | |
bytes profile_picture = 4; | |
float height = 5; | |
bool is_full_time = 6; | |
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"; | |
/* | |
* Employee Schema | |
*/ | |
message Employee { | |
string first_name = 1; // First Name | |
string last_name = 2; // Last Name | |
int32 emp_id = 3; | |
bytes profile_picture = 4; |
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 Employee { | |
string first_name = 1; | |
string last_name = 2; | |
int32 emp_id = 3; | |
bytes profile_picture = 4; | |
float height = 5; | |
bool is_full_time = 6; | |
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 Employee { | |
string first_name = 1; | |
string last_name = 2; | |
int32 emp_id = 3; | |
bytes profile_picture = 4; | |
float height = 5; | |
bool is_full_time = 6; | |
} |
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
10 10 67 108 101 97 110 32 67 111 100 101 | |
C l e a n C o d e | |
18 15 82 111 98 101 114 116 32 67 32 77 97 114 116 105 110 | |
R o b e r t C M a r t i n | |
26 14 57 55 56 45 56 49 51 49 55 55 51 51 56 51 32 -78 3 | |
9 7 8 - 8 1 3 1 7 7 3 3 8 3 434 |
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
10 10 67 108 101 97 110 32 67 111 100 101 18 15 82 111 98 101 114 116 32 67 32 77 97 114 116 105 110 26 14 57 55 56 45 56 49 51 49 55 55 51 51 56 51 32 -78 3 | |
C l e a n C o d e R o b e r t C M a r t i n 9 7 8 - 8 1 3 1 7 7 3 3 8 3 |