diff options
Diffstat (limited to 'model.go')
-rw-r--r-- | model.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -15,6 +15,13 @@ type Entry struct { Comment string } +type Task struct { + Id int + Group *string + Ident *string + Text string +} + type Date string type Time string |