CourseProgressDto
Backend-источник: feature.learningservice/Feature.LearningService/Nuget.LearningApiClient/Dto/Progress/CourseProgressDto.cs (feature.learningservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
status | CourseStatusDto | да | — | CourseStatusDto |
lastSectionId | number | null | нет | — | int? |
completedSectionIds | number[] | да | — | List<int> |
completedAt | string | null | нет | — | DateTime? |
proctorToken | string | null | нет | — | string? |
proctoring | ProctoringResultDto | null | нет | — | ProctoringResultDto? |
Пример
json
{
"status": "<CourseStatusDto>",
"lastSectionId": 0,
"completedSectionIds": [],
"completedAt": "2026-05-05T08:00:00Z",
"proctorToken": "string",
"proctoring": "<proctoringresultdto>"
}