package schedule;

/**
 * Each course in a schedule has additional comments that can
 * include whether the course has been reserved for an instructor, etc.
 **/

public class Comment {
    String comment;
}