view src/app/result-column.ts @ 56:b22e52a128a8 ng2-table

query from url fragment works now somewhat (only for id_is).
author casties
date Tue, 28 Mar 2017 20:03:36 +0200
parents b65a031c4967
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;
    }
}