mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-17 18:18:47 +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"`
|
|
}
|