mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-02 17:59:14 +02:00
19 lines
595 B
Go
19 lines
595 B
Go
package model
|
|
|
|
type Events []*Event
|
|
|
|
type Event struct {
|
|
Day string `db:"Day" json:"day"`
|
|
Week string `db:"Week" json:"week"`
|
|
Start string `db:"Start" json:"start"`
|
|
End string `db:"End" json:"end"`
|
|
Name string `db:"Name" json:"name"`
|
|
EventType string `db:"EventType" json:"eventType"`
|
|
Prof string `db:"Prof" json:"prof"`
|
|
Rooms string `db:"Rooms" json:"rooms"`
|
|
Notes string `db:"Notes" json:"notes"`
|
|
BookedAt string `db:"BookedAt" json:"bookedAt"`
|
|
Course string `db:"course" json:"course"`
|
|
Semester string `db:"semester" json:"semester"`
|
|
}
|