using Nop.Services.Plugins; namespace Nop.Web.Framework.Menu; /// /// Interface for plugins which have some items in the admin area menu /// public partial interface IAdminMenuPlugin : IPlugin { /// /// Manage sitemap. You can use "SystemName" of menu items to manage existing sitemap or add a new menu item. /// /// Root node of the sitemap. /// A task that represents the asynchronous operation Task ManageSiteMapAsync(SiteMapNode rootNode); }