Add kanban board with drag-and-drop, backlog section, task/group drawers, DTOs, services, and i18n translations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
174 B
TypeScript
12 lines
174 B
TypeScript
export type TaskPriority = {
|
|
id: number
|
|
'@id'?: string
|
|
label: string
|
|
color: string
|
|
}
|
|
|
|
export type TaskPriorityWrite = {
|
|
label: string
|
|
color: string
|
|
}
|