29 lines
501 B
Java
29 lines
501 B
Java
package ru.ulstu.utils.timetable.model;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
|
|
public class Day {
|
|
|
|
private Integer day;
|
|
private List<List<Lesson>> lessons = new ArrayList<>();
|
|
|
|
public Integer getDay() {
|
|
return day;
|
|
}
|
|
|
|
public void setDay(Integer day) {
|
|
this.day = day;
|
|
}
|
|
|
|
public List<List<Lesson>> getLessons() {
|
|
return lessons;
|
|
}
|
|
|
|
public void setLessons(List<List<Lesson>> lessons) {
|
|
this.lessons = lessons;
|
|
}
|
|
}
|
|
|