Files
Umbraco-CMS/src/Umbraco.Core/Models/TemplateQuery/QueryModel.cs

14 lines
383 B
C#
Raw Normal View History

2014-06-08 10:20:34 -07:00
using System.Collections.Generic;
namespace Umbraco.Web.Models.TemplateQuery
2014-06-08 10:20:34 -07:00
{
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
}
2017-07-20 11:21:28 +02:00
}