10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import type { AddressData } from '~/services/dto/address-data'
|
|
|
|
export interface SupplierData {
|
|
id: number
|
|
name: string
|
|
email?: string | null
|
|
phone?: string | null
|
|
addresses?: AddressData[] | null
|
|
}
|