aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/left-panel.ts
blob: 759d5f317ece4c099ce101951598a1f510844f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

export class LeftPanelModel {
    numberOfElements:number;
    sortedCategories:any;

    constructor() {
        this.numberOfElements = 0;
        this.sortedCategories = {};
    }
}