11 lines
228 B
C#
11 lines
228 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
|
|
}
|
|
} |