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