file correction

This commit is contained in:
borean 2024-03-04 19:34:35 +01:00
parent a22dcb9f4e
commit ae9ee91bc4

View file

@ -0,0 +1,19 @@
package model
type TimeReport struct {
reportId string
projectName string
userName string
userRole string
reportDate string
timeWorked uint64
isSigned bool
reportStatus string // Example "draft", "signed", "unsigned"
}
type Project struct {
timeReports []TimeReport
projectName string
projectmembers map[string]User
projectRoles map[string]User
}