view src/app/result-column.ts @ 47:b65a031c4967 ng2-final

first step to angular2-final (2.4) version of the query browser.
author casties
date Fri, 17 Mar 2017 20:16:52 +0100
parents app/result-column.ts@4926885f8a99
children
line wrap: on
line source

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