view src/app/result-column.ts @ 62:7787ca310644 webpack tip

update @angular to 4.4.5.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Wed, 18 Oct 2017 17:46:41 +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;
    }
}