1
0
Fork 0

new model for notification

This commit is contained in:
Heiko Kernbach 2014-02-14 20:45:00 +01:00
parent 04ab98b133
commit 2f96ac70ad
1 changed files with 6 additions and 4 deletions

View File

@ -5,10 +5,12 @@
window.Notification = Backbone.Model.extend({
defaults: {
"title": "",
"content": "",
"priority": "",
"seen": false
"title" : "",
"date" : 0,
"content" : "",
"priority" : "",
"tags" : "",
"seen" : false
}
});