mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2026-01-16 19:42:26 +01:00
13 lines
311 B
Go
13 lines
311 B
Go
package model
|
|
|
|
type Module struct {
|
|
UUID string `db:"uuid" json:"uuid"`
|
|
Name string `db:"Name" json:"name"`
|
|
Course string `db:"course" json:"course"`
|
|
Prof string `db:"prof" json:"prof"`
|
|
Semester string `db:"semester" json:"semester"`
|
|
Events Events `json:"events"`
|
|
}
|
|
|
|
type Modules []Module
|