mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 10:52:26 +01:00
13 lines
221 B
Go
13 lines
221 B
Go
package model
|
|
|
|
type SeminarGroup struct {
|
|
University string
|
|
GroupShortcut string
|
|
GroupId string
|
|
Course string
|
|
Faculty string
|
|
FacultyId string
|
|
Semester string
|
|
Events []Event
|
|
}
|