package grader.Main;


import java.util.Collection;

/**
 *
 * 
                  An Assignment is used to hold information concerning an
 * assignment.  
                  It consists of the due date, the points tha
 *t the assignment is worth
                  and the scores for the assignment down the column.
                   * 
 * @author 
 * @version 
 *
 **/

public class Assignment {

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

     }

     protected String dueDate_;

     protected int points_;

}