Files
Umbraco-CMS/umbraco/businesslogic/IconI.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

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;}
}
}