package caldb;
import schedule.Calendar;
import options.UserOptions;

/**
 * A user calendar is named, with its own set of options.  It extends the
 * Calendar object, which contains the collection of scheduled items.
 */
public abstract class UserCalendar extends Calendar {
    String userName;
    UserOptions options;
}