diff options
Diffstat (limited to 'catalog-ui/src/app/models/catalogSelector.ts')
-rw-r--r-- | catalog-ui/src/app/models/catalogSelector.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/catalogSelector.ts b/catalog-ui/src/app/models/catalogSelector.ts new file mode 100644 index 0000000000..b3a7aa353a --- /dev/null +++ b/catalog-ui/src/app/models/catalogSelector.ts @@ -0,0 +1,14 @@ +/* added Michael */ +// export interface ILeftSwitchItemModel { +export interface ICatalogSelector{ + value: CatalogSelectorTypes; + title: string; + header: string; + hidden?: number; + disabled?: number; +} + +export enum CatalogSelectorTypes { + Active, + Archive, +}
\ No newline at end of file |