25 lines
394 B
C#
25 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public enum QuestionType
|
|
{
|
|
Text,
|
|
CheckBox,
|
|
TrueFalse,
|
|
Multiple_choice,
|
|
Rating,
|
|
Likert,
|
|
Matrix,
|
|
Open_ended,
|
|
Demographic,
|
|
Ranking,
|
|
Image,
|
|
Slider
|
|
|
|
}
|
|
}
|