mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-09 13:17:46 +02:00
feat:#7 added new folder structure and updated api in ical
This commit is contained in:
12
services/ical/model/moduleModel.go
Normal file
12
services/ical/model/moduleModel.go
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
Reference in New Issue
Block a user