package scheduler.RoomDB; import java.util.Collection; /** * * The Timeslot onject contains all of the information about what time the room is avaiable to the department for use. * * @author * @version * **/ public class TimeSlot { /** Default Constructor **/ public TimeSlot() { } protected TimePref timePref; protected String date; protected Time time; }