Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Menus;
/// <summary>
/// Represents the menu type
/// </summary>
public enum MenuType
{
/// <summary>
/// Main menu
/// </summary>
Main = 5,
/// <summary>
/// Footer menu
/// </summary>
Footer = 10
}