14 lines
244 B
Java
14 lines
244 B
Java
|
|
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;
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|