2014-06-08 10:20:34 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Editors
|
|
|
|
|
|
{
|
2014-06-09 16:42:57 +01:00
|
|
|
|
using Umbraco.Web.Editors.TemplateQuery;
|
|
|
|
|
|
|
|
|
|
|
|
public class QueryModel
|
2014-06-08 10:20:34 -07:00
|
|
|
|
{
|
2014-06-09 16:42:57 +01:00
|
|
|
|
public ContentTypeModel ContentType { get; set; }
|
|
|
|
|
|
public SourceModel Source { get; set; }
|
|
|
|
|
|
public IEnumerable<QueryCondition> Filters { get; set; }
|
2014-06-09 23:23:31 +01:00
|
|
|
|
public SortExpression Sort { get; set; }
|
2014-06-09 13:18:35 +01:00
|
|
|
|
public int Take { get; set; }
|
2014-06-08 10:20:34 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|