Files
Umbraco-CMS/src/Umbraco.Web/Editors/TemplateQuery/QueryModel.cs

13 lines
377 B
C#
Raw Normal View History

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; }
public int Take { get; set; }
2014-06-08 10:20:34 -07:00
}
}