package student;

/**
 * This class contains the necessary information for maintaining courses
 * in the student interfaces.
 */
abstract class Course {
	String title;
	int number;
	Quarter quarter;
}