csnotes/338/homework4/Instructor.java
2019-05-05 21:08:43 -07:00

23 lines
412 B
Java

/*
Class:
Instructor
Description:
Structure to represent a instructor in the school system
*/
public class Instructor {
public int id;
public String name;
public String email;
public String phone;
public Instructor(int id , String name, String email, String phone) {
this.id = id;
this.name = name;
this.email = email;
this.phone = phone;
}
public String toString() {
return this.name;
}
}