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,15 @@
using System.Collections.Generic;
namespace Umbraco.Web.Models.TemplateQuery
{
public class QueryResultModel
{
public string QueryExpression { get; set; }
public IEnumerable<TemplateQueryResult> SampleResults { get; set; }
public int ResultCount { get; set; }
public double ExecutionTime { get; set; }
public int Take { get; set; }
}
}