Files
Umbraco-CMS/src/Umbraco.Web/Trees/TreeQueryStringParameters.cs
2013-11-19 12:28:50 +11:00

14 lines
494 B
C#

namespace Umbraco.Web.Trees
{
/// <summary>
/// Common query string parameters used for tree query strings
/// </summary>
internal struct TreeQueryStringParameters
{
public const string IsDialog = "isDialog";
public const string Application = "application";
public const string StartNodeId = "startNodeId";
//public const string OnNodeClick = "OnNodeClick";
//public const string RenderParent = "RenderParent";
}
}