namespace umbraco.interfaces { /// /// IMenuElement is an interface for items in the umbraco backoffice panel menu /// public interface IMenuElement { /// /// Gets the name of the element. /// /// The name of the element. string ElementName { get;} /// /// Gets the element id pre fix. /// /// The element id pre fix. string ElementIdPreFix { get;} /// /// Gets the element class. /// /// The element class. string ElementClass { get;} /// /// Gets the width of the extra menu. /// /// The width of the extra menu. int ExtraMenuWidth { get;} } }