Created
June 4, 2017 08:31
-
-
Save dmi3coder/7c6c17462d376a6726c2cdc3dd9ed92f to your computer and use it in GitHub Desktop.
Note protobuf stucture
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
enum NoteType { | |
BASIC = 0; | |
REMINDER = 1; | |
SCRATCH = 2; | |
} | |
message Note { | |
int64 id = 1; | |
string name = 2; | |
int64 creationDate = 3; | |
string content = 5; | |
NoteType type = 4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment