2013-08-12 15:06:12 +02:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2013-07-30 14:23:39 +10:00
|
|
|
|
}
|