Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Menus;
///
/// Represents the template for the menu item
///
public enum MenuItemTemplate
{
///
/// Simple link
///
Simple = 0,
///
/// Grid view
///
Grid = 5,
///
/// List view
///
List = 10
}