comparison 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
comparison
equal deleted inserted replaced
46:1f3fed01aef6 47:b65a031c4967
1 export class ResultColumn {
2 public name: string;
3 public title: string;
4 public sort: any;
5 public show: boolean;
6
7 constructor (name: string, title: string, sort='', show=false) {
8 this.name = name;
9 this.title = title;
10 this.sort = sort;
11 this.show = show;
12 }
13 }