package scheduler.File;

import scheduler.ScheduleDB.*;

import java.util.Collection;

/**
 *
 * 
                   This is the user workspace that contains the UserSchedule
 * which is the current schedule that the user is working on
                  
 * This contains the information about what the file name is of the schedule
 * that the user is working on
                   and the user that is working on the file.
       * 
 * @author 
 * @version 
 *
 **/

public class UserWorkspace {

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

     }

     protected int uid;

     protected Collection<UserSchedule> schedules;

     protected PreviousState previous_state;

}