import { ListItem } from './list-item.model';
export interface ListGroup {
    id: string;
    title: string;
    items: ListItem[];
}
