package grader.Main;


import java.util.Collection;

/**
 *
 * 
     A FinalValue is used for every entry in the FinalGradeDistribution
 *.
     For example, "A", "A-", and "B+" would each have their own separate
     entry with a unique lower bound.
     * 
 * @author 
 * @version 
 *
 **/

public class FinalValue {

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

     }

     protected String symbol;

     protected int color;

     protected double lb;

}