import { BaseModel } from './baseModel'; export interface CustomerLead extends BaseModel { name?: string; phone: string; city: string; status?: string; comments?: string; }