fix:#65 updated db model for proxyrecord

This commit is contained in:
Elmar Kresse
2025-04-22 12:24:05 +02:00
parent c5afe8efca
commit 3e07451c47
9 changed files with 451 additions and 99 deletions

View File

@@ -26,3 +26,9 @@ type SeminarGroup struct {
Semester string
Events []Event
}
type SeminarGroups []SeminarGroup
func (group *SeminarGroup) UniqueKey() string {
return group.Course + group.Semester
}