Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Core.Domain.Menus;
/// <summary>
/// Menu settings
/// </summary>
public partial class MenuSettings : ISettings
{
/// <summary>
/// Gets or sets the number of sub-items for entity item in the grid view
/// </summary>
public int NumberOfSubItemsPerGridElement { get; set; }
/// <summary>
/// Gets or sets the number of elements in a grid row
/// </summary>
public int NumberOfItemsPerGridRow { get; set; }
/// <summary>
/// Gets or sets the maximum number of loaded sub-entities
/// </summary>
public int MaximumNumberEntities { get; set; }
/// <summary>
/// Gets or sets the picture size of pictures in the grid view
/// </summary>
public int GridThumbPictureSize { get; set; }
/// <summary>
/// Gets or sets the maximum number of menu levels
/// </summary>
public int MaximumMainMenuLevels { get; set; }
}