TaskSummaryDto
DTO for task summary by status
Properties
| Name | Type | Description |
|---|---|---|
| notStarted | integer | Count of tasks that are not started |
Count of tasks that are not started | ||
| inProgress | integer | Count of tasks that are in progress |
Count of tasks that are in progress | ||
| blocked | integer | Count of tasks that are blocked |
Count of tasks that are blocked | ||
| completed | integer | Count of tasks that are completed |
Count of tasks that are completed | ||
| total | integer | Total count of all tasks |
Total count of all tasks | ||
JSON Example
{
"notStarted": 0,
"inProgress": 0,
"blocked": 0,
"completed": 0,
"total": 0
}