export interface DrillNavModel { id: number; title: string; path: string | null; parent: number | null; children: Array | null; root: boolean; icon: string; click?: Function; cls?: string; }