mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 19:12:25 +01:00
25 lines
404 B
Go
25 lines
404 B
Go
package model
|
|
|
|
type SeminarGroup struct {
|
|
University string
|
|
GroupShortcut string
|
|
GroupId string
|
|
Course string
|
|
Faculty string
|
|
FacultyId 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
|
|
}
|