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