aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-03-12 15:16:32 +0100
committerTeddy Wing2017-03-12 15:16:32 +0100
commit7a8db5312bbb43c986fbae7aa14960e22080b03b (patch)
tree16e371fada4ac914a979428e76e4791c054bf1a1
parentaee4a11e2d7263e6f2056ff0af8273e842e14ff4 (diff)
downloadtimetasker-7a8db5312bbb43c986fbae7aa14960e22080b03b.tar.bz2
time_entry.go: Add missing `Time` field
Include billable hours field.
-rw-r--r--timetask/time_entry.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/timetask/time_entry.go b/timetask/time_entry.go
index 6dfb787..f78753a 100644
--- a/timetask/time_entry.go
+++ b/timetask/time_entry.go
@@ -8,6 +8,7 @@ type TimeEntry struct {
Task string
WorkType string `yaml:"work_type"`
Date time.Time
+ Time uint
Billable bool
Description string
}