Start of the Project

This commit is contained in:
Sage The DM 2024-10-29 20:17:51 +01:00
parent 48a8902a52
commit c317cd6227
14 changed files with 231 additions and 6 deletions

View 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;
}
}