| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System.Collections.Generic;
- using Abp.Localization;
- namespace Abp.Application.Navigation
- {
- /// <summary>
- /// Represents a menu shown to the user.
- /// </summary>
- public class UserMenu
- {
- /// <summary>
- /// Unique name of the menu in the application.
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Display name of the menu.
- /// </summary>
- public string DisplayName { get; set; }
- /// <summary>
- /// A custom object related to this menu item.
- /// </summary>
- public object CustomData { get; set; }
- /// <summary>
- /// Menu items (first level).
- /// </summary>
- public IList<UserMenuItem> Items { get; set; }
- /// <summary>
- /// Creates a new <see cref="UserMenu"/> object.
- /// </summary>
- public UserMenu()
- {
-
- }
- /// <summary>
- /// Creates a new <see cref="UserMenu"/> object from given <see cref="MenuDefinition"/>.
- /// </summary>
- internal UserMenu(MenuDefinition menuDefinition, ILocalizationContext localizationContext)
- {
- Name = menuDefinition.Name;
- DisplayName = menuDefinition.DisplayName.Localize(localizationContext);
- CustomData = menuDefinition.CustomData;
- Items = new List<UserMenuItem>();
- }
- }
- }
|