Start of the Project
This commit is contained in:
parent
48a8902a52
commit
c317cd6227
14 changed files with 231 additions and 6 deletions
13
Code/Steiner/CO2-Daten-Projekt/src/Lesson.java
Normal file
13
Code/Steiner/CO2-Daten-Projekt/src/Lesson.java
Normal file
|
@ -0,0 +1,13 @@
|
|||
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;
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue