aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/hierarchy-navigtion/hierarchy-display-options.ts
blob: 7045286ccde75d5b00d636d3f8a24ed54e811bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export class HierarchyDisplayOptions {
    idProperty: string;
    valueProperty: string;
    childrenProperty: string;
    searchText:string;
    constructor(idProperty:string, valueProperty:string, childrenProperty?:string, searchText?:string) {
        this.idProperty = idProperty;
        this.valueProperty = valueProperty;
        this.childrenProperty = childrenProperty;
        this.searchText = searchText;
    }
}