diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/app/result-column.ts	Fri Mar 17 20:16:52 2017 +0100
@@ -0,0 +1,13 @@
+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;
+    }
+}
\ No newline at end of file