feat(frontend) : add isFinal and archived fields to DTOs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-12 17:59:45 +01:00
parent 96a9f988c4
commit 91ffb82e44
3 changed files with 10 additions and 3 deletions

View File

@@ -4,10 +4,12 @@ export type TaskStatus = {
label: string
color: string
position: number
isFinal: boolean
}
export type TaskStatusWrite = {
label: string
color: string
position: number
isFinal: boolean
}