Try your search with a different keyword or use * as a wildcard.
using Nop.Services.Plugins;
using Nop.Web.Framework.Events;
namespace Nop.Plugin.Misc.PowerBI.Services;
///
/// Represents plugin event consumer
///
public class EventConsumer : BaseAdminMenuCreatedEventConsumer
{
public EventConsumer(IPluginManager pluginManager) :
base(pluginManager)
{
}
///
/// Gets the plugin system name
///
protected override string PluginSystemName => PowerBIDefaults.SystemName;
///
/// The system name of the menu item before with need to insert the current one
///
protected override string BeforeMenuSystemName => "Sales summary";
}