mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 13:42:25 +01:00
Initial Commit
This commit is contained in:
20
model/seminarGroup.go
Normal file
20
model/seminarGroup.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user