IMS-java/Code/Steiner/CO2-Daten-Projekt/src/Lesson.java

14 lines
244 B
Java
Raw Normal View History

2024-10-29 20:17:51 +01:00
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;
}
}