Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MenuSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Menus;

/// 
/// Menu settings
/// 
public partial class MenuSettings : ISettings
{
    /// 
    /// Gets or sets the number of sub-items for entity item in the grid view
    /// 
    public int NumberOfSubItemsPerGridElement { get; set; }

    /// 
    /// Gets or sets the number of elements in a grid row
    /// 
    public int NumberOfItemsPerGridRow { get; set; }

    /// 
    /// Gets or sets the maximum number of loaded sub-entities
    /// 
    public int MaximumNumberEntities { get; set; }

    /// 
    /// Gets or sets the picture size of pictures in the grid view
    /// 
    public int GridThumbPictureSize { get; set; }

    /// 
    /// Gets or sets the maximum number of menu levels
    /// 
    public int MaximumMainMenuLevels { get; set; }
}