package testtool.Question;


import java.util.Collection;

/**
 *
 * 
			The chosen answer(s) to a multiple choice question.
		 * 
 * @author 
 * @version 
 *
 **/

public class MultipleChoiceAnswer {

     /** Default Constructor **/
     public MultipleChoiceAnswer() {

     }

     protected Collection<String> options;

}