package grader.Main;


import java.util.Collection;

/**
 *
 * 
      The type of file data is either GraderType data or any 
      other type of data
 * 
 * @author 
 * @version 
 *
 **/

public class FileType {

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

     }

     protected GraderType grader_type;

     protected OtherType other_type;

}