Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dmi3coder/7c6c17462d376a6726c2cdc3dd9ed92f to your computer and use it in GitHub Desktop.
Save dmi3coder/7c6c17462d376a6726c2cdc3dd9ed92f to your computer and use it in GitHub Desktop.
Note protobuf stucture
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