mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-08-02 09:49:16 +02:00
added frontend and updated backend with docker, wrote some initial instructions
This commit is contained in:
25
backend/model/seminarGroup.go
Normal file
25
backend/model/seminarGroup.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package model
|
||||
|
||||
type SeminarGroup struct {
|
||||
University string
|
||||
GroupShortcut string
|
||||
GroupId string
|
||||
Course string
|
||||
Faculty string
|
||||
FacultyId string
|
||||
Events []Event
|
||||
}
|
||||
|
||||
type Event struct {
|
||||
Day string `db:"course"`
|
||||
Week string `db:"Week"`
|
||||
Start string `db:"Start"`
|
||||
End string `db:"End"`
|
||||
Name string `db:"Name"`
|
||||
EventType string `db:"EventType"`
|
||||
Prof string `db:"Prof"`
|
||||
Rooms string `db:"Rooms"`
|
||||
Notes string `db:"Notes"`
|
||||
BookedAt string `db:"BookedAt"`
|
||||
Semester string `db:"semester"`
|
||||
}
|
Reference in New Issue
Block a user