package view.calendar;

import java.util.Collection;

import admin.DateNumber;
import admin.DayOfWeek;
import create.Section;

/**
 * This class represents a day in a schedule. A day contains the value of the
 * day of the month and the day of the week that the day represents. A day also
 * contains a collection of the sections that are being taught on that specific
 * day.
 */
public abstract class SchedulerDate {
   public DateNumber dayVal;
   public DayOfWeek dayType;
   public Collection<Section> coursesOnDay;
}