Created
June 4, 2017 08:43
-
-
Save dmi3coder/aeb8d65488e7356aaba22c2f638f5042 to your computer and use it in GitHub Desktop.
Envelope protobuf structure
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
message Envelope { | |
enum Type { | |
GET_ALL_NOTES = 0; | |
SAVE_NOTE = 1; | |
DELETE_NOTE = 2; | |
} | |
Type type = 1; | |
int64 arrivalTime = 2; | |
int64 id = 3; | |
repeated Note note = 4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment