Files
backend/internal/dto/schedule_dto.go

14 lines
427 B
Go
Raw Normal View History

package dto
type ScheduleCourseResponse struct {
ID string `json:"id"`
Name string `json:"name"`
Teacher string `json:"teacher,omitempty"`
Location string `json:"location,omitempty"`
DayOfWeek int `json:"day_of_week"`
StartSection int `json:"start_section"`
EndSection int `json:"end_section"`
Weeks []int `json:"weeks"`
Color string `json:"color,omitempty"`
}