package caldb;

import java.util.Collection;
import schedule.ScheduledItem;

/****
 * PreviousState is the snapshot of scheduled items before the most recently
 * performed scheduling operation used by edit.undo.  The Schedule, Change, and
 * Delete operations save the previous state to support Undo.
 */
public class State {
    Collection<ScheduledItem> items;
}