package grader.GradingScheme;


import java.util.Collection;

/**
 *
 * 
      The collection of MarkItems that make up a custom mark set.  
       * 
 * @author 
 * @version 
 *
 **/

public class MarkSet {

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

     }

     protected Collection<MarkItem> data;

}