11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
export interface Vendor {
|
|
vendor_id: number;
|
|
name: string;
|
|
streetname: string;
|
|
zip_code: string;
|
|
city: string;
|
|
country_code: string;
|
|
phone: string;
|
|
website: string;
|
|
}
|