feat(directory) : add frontend DTOs for contacts, addresses, reports

This commit is contained in:
Matthieu
2026-06-22 13:34:41 +02:00
parent d95f14dadc
commit bc9c036d1f
4 changed files with 86 additions and 0 deletions
@@ -0,0 +1,23 @@
export type Address = {
id: number
'@id'?: string
label: string | null
street: string | null
streetComplement: string | null
postalCode: string | null
city: string | null
country: string
client?: string | null
prospect?: string | null
}
export type AddressWrite = {
label: string | null
street: string | null
streetComplement: string | null
postalCode: string | null
city: string | null
country: string
client?: string | null
prospect?: string | null
}