Webiant Logo Webiant Logo
  1. No results found.

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

MenuItemTemplate.cs

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
}