summaryrefslogtreecommitdiff
path: root/model.go
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2024-05-24 21:44:05 +0200
committerJulian T <julian@jtle.dk>2024-05-24 21:44:05 +0200
commiteabd0e769c2bfef7a7aa748d794675d3ff7a920b (patch)
tree68308c5262d6c162b2d196866382abb651d0dff5 /model.go
parent2f83424ce8a0653e6e158318df1511daecf1a42d (diff)
Add tasks
Diffstat (limited to 'model.go')
-rw-r--r--model.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/model.go b/model.go
index b6d5c79..96be9e4 100644
--- a/model.go
+++ b/model.go
@@ -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