12 lines
378 B
C#
12 lines
378 B
C#
|
|
namespace Umbraco.Web.Trees
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Common query string parameters used for tree query strings
|
|||
|
|
/// </summary>
|
|||
|
|
internal struct TreeQueryStringParameters
|
|||
|
|
{
|
|||
|
|
public const string DialogMode = "DialogMode";
|
|||
|
|
public const string OnNodeClick = "OnNodeClick";
|
|||
|
|
public const string RenderParent = "RenderParent";
|
|||
|
|
}
|
|||
|
|
}
|