Class TestQuestionDetailsModel
Test question details model.
Inherited Members
Namespace: EduCATS.Data.Models
Assembly: EduCATS.dll
Syntax
public class TestQuestionDetailsModel
Properties
Answers
Answers list.
Declaration
[JsonProperty("Answers")]
public List<TestAnswerModel> Answers { get; set; }
Property Value
Type | Description |
---|---|
List<TestAnswerModel> |
ComlexityLevel
Question complexity level.
Declaration
[JsonProperty("ComlexityLevel")]
public int ComlexityLevel { get; set; }
Property Value
Type | Description |
---|---|
int |
Description
Question description.
Declaration
[JsonProperty("Description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
QuestionType
Question type.
0 - Single selection answer;
1 - Multiple selection answer;
2 - Text answer (editable);
3 - Movable answer (correct order).
Declaration
[JsonProperty("QuestionType")]
public int QuestionType { get; set; }
Property Value
Type | Description |
---|---|
int |
Title
Question title.
Declaration
[JsonProperty("Title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |