package user;

import create.Schedule;

/**
 * Administrator class is a User with administrative privileges to modify
 * Instructor preferences and global constraints, effectively modifying the
 * types of courses that can be generated by the program.
 * 
 * @author sbayley
 **/

public abstract class Administrator extends User {
   
   /**
    * Create an Administrator with the provided params.
    * 
    **/
   public Administrator(String ID, String firstName, String lastName) {
      super(ID, firstName, lastName);
   }
   
   
}