Files
Umbraco-CMS/src/Umbraco.Web/Trees/ActionUrlMethod.cs
2018-11-22 14:05:51 +00:00

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