view src/app/result-column.ts @ 61:6adf95d9a190 webpack

fix missing resultInfo. add column template for WITNESS.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Mon, 24 Apr 2017 19:39:25 +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;
    }
}