view app/result-column.ts @ 26:991bf349bb04

re-display table more often.
author casties
date Wed, 27 Jan 2016 13:30:38 +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;
    }
}