package scheduler.InstructorDB;

import scheduler.InstructorPref.*;

import java.util.Collection;

/**
 *
 * 
  	 		The Disabilities object has the disabilities that an instructor can be classified under.
  	  * 
 * @author 
 * @version 
 *
 **/

public class Disabilities {

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

     }

     protected boolean mobility;

     protected boolean vision;

     protected boolean hearing;

     protected boolean dexterity;

}