view app/result-column.ts @ 27:c2946b7135cd

working on larger results.
author casties
date Wed, 27 Jan 2016 15:38:17 +0100
parents 0795207f3b90
children 4926885f8a99
line wrap: on
line source

export class ResultColumn {
    public name: string;
    public title: string;
    public sort: any;
    
    constructor (name: string, title: string, sort='') {
        this.name = name;
        this.title = title;
        this.sort = sort;
    }
}