package scheduler.File;

import scheduler.ScheduleDB.*;

import java.util.Collection;

/**
 *
 * 
                     This contains the file that the  user is working on in
 * the given workspace.
   						Given the user id also this tell who is workin
 *g on the schedule.  If there are multiple admins
 							this could narrow down who is making the changes the schedule.
       * 
 * @author 
 * @version 
 *
 **/

public class UserSchedule {

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

     }

     protected Collection<String> file;

     protected boolean requires_saving;

     protected int uid;

}