/**
 * The user class is a super class for the instructor and student classes.
 * 
 * @author Daniel Gilliland
 */
package user;

abstract class User {
   String username;
}