Initial Commit

This commit is contained in:
Elmar Kresse
2023-06-19 22:38:08 +02:00
parent 924abf33a1
commit 9bf42cd5a9
11 changed files with 3469 additions and 0 deletions

20
model/seminarGroup.go Normal file
View File

@@ -0,0 +1,20 @@
package model
type SeminarGroup struct {
University string
GroupShortcut string
Events []Events
}
type Events struct {
Day string
Week string
Start string
End string
Name string
EventType string
Prof string
Rooms string
Notes string
BookedAt string
}