package schedule;

/**
 * Duration is the time length of a scheduled item, in hours and minutes.  It
 * is derived from Section 2.5 of the requirements, in particular the
 * 'Duration' component of Figure 39.
 */
public abstract class Duration {
    int hr;
    int min;
}