import { Lead } from './lead.model'; export class LeadCollection { public leads: Lead[]; public stageCount: { 'new': number, 'checkup': number, 'decision': number, 'payment': number, 'won': number, 'rejected': number, }; public count: number; public total: number; public unassignedTotal: number; }