mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
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;
|
|
}
|