package view;

import schedule.Month;

/**
 * The monthly calendar representation of a generated schedule.
 */
abstract class MonthlyView extends CalendarView {
  /** 
   * The month to display.
   */
  Month month;
}