workreport-manager/project/period.go

8 lines
168 B
Go

package project
// Period represents a school period in the weekly report.
type Period struct {
Subject string `json:"Subject"`
Topics []string `json:"Topics"`
}