workreport-manager/project/format.go

14 lines
517 B
Go
Raw Normal View History

2017-02-09 14:13:03 +00:00
package project
// Project represents the root structure of a project file.
type Project struct {
Name string `json:"Name"`
Department string `json:"Department"`
FirstDayMonday bool `json:"First day is monday"`
OnlyShowWorkDays bool `json:"Only show work days"`
HideLegalRepSignField bool `json:"Hide legal representative field"`
Begin Date `json:"Begin"`
End Date `json:"End"`
Weeks []Week `json:"Weeks"`
2017-02-09 14:13:03 +00:00
}