mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import { MenuItemModel } from './menu-item.model';
|
|
import { MenuItemType } from '../../initial-menus-state';
|
|
|
|
/**
|
|
* Model representing an Link Menu Section
|
|
*/
|
|
export class LinkMenuItemModel implements MenuItemModel {
|
|
type = MenuItemType.LINK;
|
|
text: string;
|
|
link: string;
|
|
}
|