package schedule;

/**
 * Each course in a schedule has a number of students that the 
 * administrator has planned on taking that course.
 **/

public class PlannedEnrollment {
    int number_students;
}