14 lines
420 B
C#
14 lines
420 B
C#
|
|
namespace Umbraco.Web.BackOffice.Trees
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Common query string parameters used for tree query strings
|
|||
|
|
/// </summary>
|
|||
|
|
internal struct TreeQueryStringParameters
|
|||
|
|
{
|
|||
|
|
public const string Use = "use";
|
|||
|
|
public const string Application = "application";
|
|||
|
|
public const string StartNodeId = "startNodeId";
|
|||
|
|
public const string DataTypeKey = "dataTypeKey";
|
|||
|
|
}
|
|||
|
|
}
|