mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-03 10:19:14 +02:00
11 lines
288 B
Go
11 lines
288 B
Go
package model
|
|
|
|
type Module struct {
|
|
UUID string `json:"uuid" db:"uuid"`
|
|
Name string `json:"name" db:"Name"`
|
|
Prof string `json:"prof" db:"Prof"`
|
|
Course string `json:"course" db:"course"`
|
|
Semester string `json:"semester" db:"semester"`
|
|
Events Events `json:"events"`
|
|
}
|