package scheduler.RoomDB;


import java.util.Collection;

/**
 *
 * 
        The Rooms object consists of building, room #, type, max occupancy, equipment, and disability
     * 
 * @author 
 * @version 
 *
 **/

public class RoomEntry {

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

     }

     protected TimeSlot timeslot;

     protected int building;

     protected int roomnumber;

     protected String type;

     protected int maxocc;

     protected String equipment;

     protected String disability;

}