package grader.Main;


import java.util.Collection;

/**
 *
 * 
      A File is an abstraction of a file stored in the file 
      space.
    * 
 * @author 
 * @version 
 *
 **/

public class File {

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

     }

     protected String name;

     protected FilePermissions permissions;

     protected FileType file_type;

     protected Class data;

}