public class Lesson { int room; String teacherName; String startTime; String endTime; String day; public Lesson(int room, String teacherName) { this.room = room; this.teacherName = teacherName; } }