1/** 2 * Company and client type definitions 3 */ 4 5import type { BaseContent } from './defineBase'; 6 7export interface Company extends BaseContent { 8 name: string; 9 website?: string; 10 type?: 'B2B' | 'B2C'; 11 industry: string; 12 city: string; 13 country: string; 14 logo?: string; 15}