using Nop.Services.Plugins; namespace Nop.Web.Framework.Menu; /// /// Interface for plugins which have some items in the admin area menu /// [Obsolete("This interface is deprecated and will be removed in a future release. Please use AdminMenuCreatedEvent and/or ThirdPartyPluginsMenuItemCreatedEvent event handling.")] public partial interface IAdminMenuPlugin : IPlugin { /// /// Manage admin menu. You can use "SystemName" of menu items to manage existing item or add a new one. /// /// Root item of the menu /// A task that represents the asynchronous operation Task ManageSiteMapAsync(AdminMenuItem rootNode); }