aboutsummaryrefslogtreecommitdiffstats
path: root/timetask/project.go
diff options
context:
space:
mode:
Diffstat (limited to 'timetask/project.go')
-rw-r--r--timetask/project.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/timetask/project.go b/timetask/project.go
new file mode 100644
index 0000000..b8fe5c7
--- /dev/null
+++ b/timetask/project.go
@@ -0,0 +1,10 @@
+package timetask
+
+type Project struct {
+ Client int
+ Project int
+ Module int
+ Task int
+ WorkType int `toml:"work_type"`
+ Billable bool
+}