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"` }