16 lines
350 B
C#
16 lines
350 B
C#
using System;
|
|
using System.Net.Http.Formatting;
|
|
|
|
namespace Umbraco.Web.Trees
|
|
{
|
|
public class TreeRenderingEventArgs : EventArgs
|
|
{
|
|
public FormDataCollection QueryStrings { get; private set; }
|
|
|
|
public TreeRenderingEventArgs(FormDataCollection queryStrings)
|
|
{
|
|
QueryStrings = queryStrings;
|
|
}
|
|
}
|
|
}
|