package scheduler.Attributes;


import java.util.Collection;

/**
 *
 * 
        The Courses object gives an integer value that represents how
	good the generated schedule fits the an instructor's course preferences.
     * 
 * @author 
 * @version 
 *
 **/

public class Courses {

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

     }

     protected String course;

     protected int value;

}