2014-06-08 10:20:34 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Editors
|
|
|
|
|
|
{
|
|
|
|
|
|
public class QueryModel : IQueryModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ContentTypeAlias { get; set; }
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public IEnumerable<IQueryCondition> Wheres { get; set; }
|
|
|
|
|
|
public ISortExpression SortExpression { get; set; }
|
2014-06-09 13:18:35 +01:00
|
|
|
|
public int Take { get; set; }
|
2014-06-08 10:20:34 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|