Files
Umbraco-CMS/src/Umbraco.Web/Trees/ActionUrlMethod.cs
2017-07-20 11:21:28 +02:00

12 lines
240 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
}
}