diff options
author | Teddy Wing | 2017-06-04 02:07:50 +0200 |
---|---|---|
committer | Teddy Wing | 2017-06-04 02:07:50 +0200 |
commit | 02e4fb5d0d95b8c5c5442ee0a97b960f1296c236 (patch) | |
tree | 4cf323694692322036b80d2d921ff966096c6c36 /timetask/project.go | |
parent | 055301ca09d57b759b290d897bbb7560460251ca (diff) | |
parent | 9b6a6543e351308939bd420243507368b0669e63 (diff) | |
download | timetasker-02e4fb5d0d95b8c5c5442ee0a97b960f1296c236.tar.bz2 |
Merge branch 'timetasker-daily'
Diffstat (limited to 'timetask/project.go')
-rw-r--r-- | timetask/project.go | 10 |
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 +} |