using System; namespace umbraco.BusinessLogic.console { /// /// Summary description for MenuItemI. /// [Obsolete("this is not used anywhere")] public interface MenuItemI { EditorBehavior behavior {get;} string EditorURL {get;} string Text {get;} } [Obsolete("this is not used anywhere")] public enum EditorBehavior { modal, external, standard, command } }