mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 17:48:51 +02:00
10 lines
201 B
Go
10 lines
201 B
Go
package model
|
|
|
|
type Module struct {
|
|
Name string `json:"name"`
|
|
Prof string `json:"prof"`
|
|
Course string `json:"course"`
|
|
Semester string `json:"semester"`
|
|
Events Events `json:"events"`
|
|
}
|