mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 09:38:51 +02:00
26 lines
569 B
Go
26 lines
569 B
Go
package model
|
|
|
|
type SeminarGroup struct {
|
|
University string
|
|
GroupShortcut string
|
|
GroupId string
|
|
Course string
|
|
Faculty string
|
|
FacultyId string
|
|
Events []Event
|
|
}
|
|
|
|
type Event struct {
|
|
Day string `db:"course"`
|
|
Week string `db:"Week"`
|
|
Start string `db:"Start"`
|
|
End string `db:"End"`
|
|
Name string `db:"Name"`
|
|
EventType string `db:"EventType"`
|
|
Prof string `db:"Prof"`
|
|
Rooms string `db:"Rooms"`
|
|
Notes string `db:"Notes"`
|
|
BookedAt string `db:"BookedAt"`
|
|
Semester string `db:"semester"`
|
|
}
|