19 lines
277 B
C#
19 lines
277 B
C#
namespace Model
|
|
{
|
|
public enum QuestionType
|
|
{
|
|
Text,
|
|
CheckBox,
|
|
TrueFalse,
|
|
Multiple_choice,
|
|
Rating,
|
|
Likert,
|
|
Matrix,
|
|
Open_ended,
|
|
Demographic,
|
|
Ranking,
|
|
Image,
|
|
Slider
|
|
|
|
}
|
|
}
|