mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { MenuItemType } from '../../initial-menus-state';
|
|
import { MenuItemModel } from './menu-item.model';
|
|
|
|
/**
|
|
* Model representing an Text Menu Section
|
|
*/
|
|
export class TextMenuItemModel implements MenuItemModel {
|
|
type = MenuItemType.TEXT;
|
|
text: string;
|
|
}
|