Files
Umbraco-CMS/src/Umbraco.Web/Trees/ActionUrlMethod.cs
2013-08-12 15:17:34 +02:00

11 lines
238 B
C#

namespace Umbraco.Web.Trees
{
/// <summary>
/// Specifies the action to take for a menu item when a URL is specified
/// </summary>
public enum ActionUrlMethod
{
Dialog,
BlankWindow
}
}