Files
Lesstime/frontend/services/dto/project.ts
2026-03-13 08:20:31 +01:00

20 lines
386 B
TypeScript

import type { Client } from './client'
export type Project = {
id: number
'@id'?: string
code: string
name: string
description: string | null
color: string
client: Client | null
}
export type ProjectWrite = {
code?: string
name: string
description: string | null
color: string
client: string | null // IRI : "/api/clients/1" ou null
}