Skip to content

Instantly share code, notes, and snippets.

View sparkmylife's full-sized avatar

Neeraj Kushwaha sparkmylife

View GitHub Profile
syntax = "proto3";
message Employee {
string first_name = 1;
string last_name = 2;
Date doj = 3;
}
message Date {
int32 year = 1;
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;
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;
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;
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;
}
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
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
syntax = "proto3";
// 1,2,3,4 these are order of fields in serialized data
message Author {
string title = 1;
string author = 2;
string isbn13 = 3;
int32 page = 4;
}