mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-24 13:38:48 +02:00
12 lines
199 B
Go
12 lines
199 B
Go
package model
|
|
|
|
type SeminarGroup struct {
|
|
University string
|
|
GroupShortcut string
|
|
GroupId string
|
|
Course string
|
|
Faculty string
|
|
FacultyId string
|
|
Events []Event
|
|
}
|