workreport-manager/project/period.go

8 lines
168 B
Go
Raw Normal View History

2017-02-09 14:13:03 +00:00
package project
// Period represents a school period in the weekly report.
type Period struct {
Subject string `json:"Subject"`
Topics []string `json:"Topics"`
}