export class MwListItem { title: string; subTitle: string; data: any; constructor(title: string, data: any) { this.title = title; this.data = data; } } export interface MwListGroup { groupTitle: string; items: MwListItem[]; }