2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Web.BackOffice.Trees
|
2020-06-07 09:34:32 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|