14 lines
383 B
C#
14 lines
383 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Web.Models.TemplateQuery
|
|
{
|
|
public class QueryModel
|
|
{
|
|
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; }
|
|
}
|
|
}
|