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

15 lines
415 B
C#
Raw Normal View History

2014-06-08 10:20:34 -07:00
using System.Collections.Generic;
namespace Umbraco.Web.Editors
{
using Umbraco.Web.Editors.TemplateQuery;
public class QueryModel
2014-06-08 10:20:34 -07:00
{
public ContentTypeModel ContentType { get; set; }
public SourceModel Source { get; set; }
public IEnumerable<QueryCondition> Filters { get; set; }
public SortExpression Sort { get; set; }
public int Take { get; set; }
2014-06-08 10:20:34 -07:00
}
}