20 lines
384 B
TypeScript
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
|
|
}
|