Files
plutoapi-v2/src/models/betterzon/vendors/vendor.interface.ts
T
2021-11-11 11:52:27 +01:00

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;
}