re base code
[sdc.git] / catalog-ui / src / app / ng2 / components / logic / hierarchy-navigtion / hierarchy-display-options.ts
index c8d4566..36257ca 100644 (file)
@@ -23,10 +23,16 @@ export class HierarchyDisplayOptions {
     valueProperty: string;
     childrenProperty: string;
     searchText:string;
-    constructor(idProperty:string, valueProperty:string, childrenProperty?:string, searchText?:string) {
+    archived:boolean;
+
+    iconProperty: string;
+    constructor(idProperty:string, valueProperty:string, childrenProperty?:string, searchText?:string, iconProperty?:string, archived?:boolean) {
+    
         this.idProperty = idProperty;
         this.valueProperty = valueProperty;
         this.childrenProperty = childrenProperty;
         this.searchText = searchText;
+        this.archived = archived;
+        this.iconProperty = iconProperty;
     }
 }