aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/todo_item.go
diff options
context:
space:
mode:
authorQuey-Liang Kao <s101062801@m101.nthu.edu.tw>2017-09-21 12:16:10 -0500
committerGitHub <noreply@github.com>2017-09-21 12:16:10 -0500
commit902d0f825abc3a18278aadc2a8c3cd45dd8d308d (patch)
treec08037986e9981ebd8e56fe8dd851fa99fcd4c32 /todolist/todo_item.go
parent06211d84da190ab9a5e174db9f52672b69f9b3e4 (diff)
parenta716a04c831e4fb23cdd558756d8f393e4ef8d73 (diff)
Merge pull request #89 from NonerKao/note
Add new feature: notes for todos
Diffstat (limited to 'todolist/todo_item.go')
-rw-r--r--todolist/todo_item.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/todolist/todo_item.go b/todolist/todo_item.go
index 0c30707..5b9bcbc 100644
--- a/todolist/todo_item.go
+++ b/todolist/todo_item.go
@@ -15,6 +15,7 @@ type Todo struct {
CompletedDate string `json:"completedDate"`
Archived bool `json:"archived"`
IsPriority bool `json:"isPriority"`
+ Notes []string `json:"notes"`
}
func NewTodo() *Todo {