plutoapi-v2/src/models/betterzon/vendors/vendor.interface.ts

11 lines
175 B
TypeScript

export interface Vendor {
vendor_id: number;
name: string;
streetname: string;
zip_code: string;
city: string;
country_code: string;
phone: string;
website: string;
}