TeamDto
Response DTO for a team
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this team |
The unique code for this team | ||
| name | string | The display name of the team |
The display name of the team | ||
| description | string | Optional description of the team's purpose |
Optional description of the team's purpose | ||
| iconName | string | Optional Lucide icon name for visual identification |
Optional Lucide icon name for visual identification | ||
| color | string | Optional hex color for visual identification |
Optional hex color for visual identification | ||
| canBeAssignedToTasks | boolean | Whether this team can be assigned to tasks |
Whether this team can be assigned to tasks | ||
| canBeAssignedToClients | boolean | Whether this team can be assigned to clients |
Whether this team can be assigned to clients | ||
| members | array of CodeAndNameDto | The members of this team |
The members of this team | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"iconName": "string",
"color": "string"
}