Files
Lesstime/frontend/services/dto/client.ts
2026-03-09 23:40:48 +01:00

20 lines
384 B
TypeScript

export type Client = {
id: number
'@id'?: string
name: string
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
}
export type ClientWrite = {
name: string
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
}