feat(frontend) : add TaskDocument DTO, service and i18n translations

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:07:00 +01:00
parent 52063cb4fa
commit e53862d71f
4 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import type { UserData } from './user-data'
export type TaskDocument = {
'@id'?: string
id: number
task: string
originalName: string
fileName: string
mimeType: string
size: number
createdAt: string
uploadedBy: UserData | null
}