Files
Lesstime/frontend/modules/directory/services/dto/client.ts
T

14 lines
224 B
TypeScript

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