using System.Collections.Generic; namespace Umbraco.Web.Editors { using Umbraco.Web.Editors.TemplateQuery; public class QueryModel { public ContentTypeModel ContentType { get; set; } public SourceModel Source { get; set; } public IEnumerable Filters { get; set; } public SortExpression Sort { get; set; } public int Take { get; set; } } }