Last active
September 11, 2015 21:25
-
-
Save chrisckchang/1963b8f2068b3881e376 to your computer and use it in GitHub Desktop.
Todolist and Todo schema
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
// Todolist | |
{ | |
_id: <string>, | |
name: <string>, | |
createDate: <Date>, | |
[todos: <Array>] // <Array of Todos">? | |
} | |
// Todo | |
{ | |
_id: <string>, | |
name: <string>, | |
done: <boolean> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment