// models import { ToDoConfig } from './todo-config.model'; export interface IToDoColumn { id: string; title: string; toDoConfigs: ToDoConfig[]; }