using System.Collections.Generic; namespace Umbraco.Web.Editors { public class QueryModel : IQueryModel { public string ContentTypeAlias { get; set; } public int Id { get; set; } public IEnumerable Wheres { get; set; } public ISortExpression SortExpression { get; set; } public int Take { get; set; } } }