package admin; /** * This class contains the information for a single blackout time. It contains * the start time, end time, and days of the week where the blackout time * occurs. * * @author rmcgover * */ public abstract class BlackoutTime { Time startTime; Time endTime; DayPattern selectedDays; }