package grader.Main;


import java.util.Collection;

/**
 *
 * 
      A student contains all the essential information that any student would have
      and is identified by a unique id 
    * 
 * @author 
 * @version 
 *
 **/

public class Student {

     /** Default Constructor **/
     public Student() {

     }

     protected int eMPLID;

     protected String lastName;

     protected String middleName;

     protected String firstName;

     protected String email;

     protected String username;

     protected String standing;

     protected String major;

     protected String phone;

     protected Collection<Score> scores;

}