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,omitzero"` EndSection int `json:"end_section,omitzero"` Weeks []int `json:"weeks"` Color string `json:"color,omitempty"` }