Moves templatequery models into the right folder

This commit is contained in:
per ploug
2014-06-26 11:24:57 +02:00
parent 4fea55e751
commit 8a93c8371c
11 changed files with 11 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
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; }
}
}