Files
Umbraco-CMS/src/Umbraco.Web.BackOffice/Trees/TreeQueryStringParameters.cs

14 lines
424 B
C#
Raw Normal View History

namespace Umbraco.Cms.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";
}
}