/*
 * Student.java
 *
 * A blueprint class for representing students at a university.
 *
 * Author: S-111 Course Staff
 */
public class Student {

    private String firstName;
    private String lastName;
    private int yearOfGraduation;

    /*
     * Place your constructors here.
     */


    /*
     * Place your accessor methods here.
     */


    /*
     * Place your mutator methods here.
     */

}

