using System; using System.Collections.Generic; using System.Text; namespace SurveyFeature.Business{ /// <summary> /// Specifies the survey question type /// </summary> public enum QuestionType { TextBox, DropDownList, CheckBoxList, RadioButtonList, Date } }