diff app/result-column.ts @ 31:4926885f8a99

selectable result columns. nicer cypher query output.
author casties
date Mon, 01 Feb 2016 20:10:55 +0100
parents 0795207f3b90
children
line wrap: on
line diff
--- a/app/result-column.ts	Mon Feb 01 17:29:04 2016 +0100
+++ b/app/result-column.ts	Mon Feb 01 20:10:55 2016 +0100
@@ -2,10 +2,12 @@
     public name: string;
     public title: string;
     public sort: any;
+    public show: boolean;
     
-    constructor (name: string, title: string, sort='') {
+    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