package edu.calpoly.csc123;

public class Course {
	String prefix;
	int num;
	int section;
	int units;
	String title;
	double grade;
	
	public Course(String prefix, int num, int section, int units, String title, double grade) {
		this.prefix = prefix;
		this.num = num;
		this.section = section;
		this.units = units;
		this.title = title;
		this.grade = grade;
	}

}