31 lines
926 B
C#
31 lines
926 B
C#
|
|
namespace umbraco.interfaces
|
|
{
|
|
/// <summary>
|
|
/// IMenuElement is an interface for items in the umbraco backoffice panel menu
|
|
/// </summary>
|
|
public interface IMenuElement
|
|
{
|
|
/// <summary>
|
|
/// Gets the name of the element.
|
|
/// </summary>
|
|
/// <value>The name of the element.</value>
|
|
string ElementName { get;}
|
|
/// <summary>
|
|
/// Gets the element id pre fix.
|
|
/// </summary>
|
|
/// <value>The element id pre fix.</value>
|
|
string ElementIdPreFix { get;}
|
|
/// <summary>
|
|
/// Gets the element class.
|
|
/// </summary>
|
|
/// <value>The element class.</value>
|
|
string ElementClass { get;}
|
|
/// <summary>
|
|
/// Gets the width of the extra menu.
|
|
/// </summary>
|
|
/// <value>The width of the extra menu.</value>
|
|
int ExtraMenuWidth { get;}
|
|
}
|
|
}
|