summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/catalogSelector.ts
blob: b3a7aa353af95a701e2ae97a66a2db43cabf97a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* added Michael */
// export interface ILeftSwitchItemModel {
export interface ICatalogSelector{    
    value: CatalogSelectorTypes;
    title: string;
    header: string;
    hidden?: number;
    disabled?: number;
}

export enum CatalogSelectorTypes {
    Active,
    Archive,
}