QuizQuestionDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/Quiz/QuizQuestionDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
id | number | да | — | int |
quizId | number | да | — | int |
text | string | да | — | string |
type | QuestionTypeDto | да | — | QuestionTypeDto |
order | number | да | — | int |
options | QuizAnswerOptionDto[] | да | — | List<QuizAnswerOptionDto> |
Пример
json
{
"id": 0,
"quizId": 0,
"text": "string",
"type": "<QuestionTypeDto>",
"order": 0,
"options": []
}