mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
87382: fixing circular dependencies
This commit is contained in:
15
src/app/shared/menu/menu-section.model.ts
Normal file
15
src/app/shared/menu/menu-section.model.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { MenuItemModel } from './menu-item/models/menu-item.model';
|
||||
|
||||
/**
|
||||
* Represents the state of a single menu section in the store
|
||||
*/
|
||||
export class MenuSection {
|
||||
id: string;
|
||||
parentID?: string;
|
||||
visible: boolean;
|
||||
active: boolean;
|
||||
model: MenuItemModel;
|
||||
index?: number;
|
||||
icon?: string;
|
||||
shouldPersistOnRouteChange? = false;
|
||||
}
|
Reference in New Issue
Block a user