19 lines
384 B
C#
19 lines
384 B
C#
using System;
|
|
|
|
namespace umbraco.BusinessLogic.console
|
|
{
|
|
/// <summary>
|
|
/// Interface for internally handling CmsNodes.
|
|
/// </summary>
|
|
public interface IconI
|
|
{
|
|
Guid UniqueId{get;}
|
|
int Id{get;}
|
|
MenuItemI[] MenuItems {get;}
|
|
IconI[] Children {get;}
|
|
string DefaultEditorURL{get;}
|
|
string Text{get;set;}
|
|
string OpenImage {get;}
|
|
string Image {get;}
|
|
}
|
|
} |