feat: Basic polling
This commit is contained in:
16
internal/schedule/models.go
Normal file
16
internal/schedule/models.go
Normal file
@ -0,0 +1,16 @@
|
||||
package schedule
|
||||
|
||||
type Lesson struct {
|
||||
Subject string
|
||||
SubjectShort string `json:"subject_short"`
|
||||
}
|
||||
|
||||
type Day struct {
|
||||
Weekday int
|
||||
Date string
|
||||
Lessons []Lesson
|
||||
}
|
||||
|
||||
type Week struct {
|
||||
Days []Day
|
||||
}
|
||||
Reference in New Issue
Block a user