first push, broken import, WIP

This commit is contained in:
borean 2024-03-04 02:50:02 +01:00
parent 9e790696a5
commit a22dcb9f4e
3 changed files with 163 additions and 0 deletions

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
}