13 lines
436 B
C#
13 lines
436 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 OnNodeClick = "OnNodeClick";
|
|
//public const string RenderParent = "RenderParent";
|
|
}
|
|
} |