export class Column { public title: string; public className: string; constructor(title: string) { this.title = title; } }