feat(frontend) : add clientTicket to Task DTO

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 19:30:38 +01:00
parent bfd418851e
commit 12d043a50f

View File

@@ -22,6 +22,7 @@ export type Task = {
tags: TaskTag[]
documents: TaskDocument[]
archived: boolean
clientTicket?: { id: number; number: number; type: string; status: string; title: string } | null
}
export type TaskWrite = {