2014-06-08 09:51:06 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
2014-06-26 11:24:57 +02:00
|
|
|
|
namespace Umbraco.Web.Models.TemplateQuery
|
2014-06-08 09:51:06 -07:00
|
|
|
|
{
|
2014-06-09 16:42:57 +01:00
|
|
|
|
|
|
|
|
|
|
public class QueryResultModel
|
2014-06-08 09:51:06 -07:00
|
|
|
|
{
|
2014-06-08 22:39:01 +01:00
|
|
|
|
|
2014-06-08 09:51:06 -07:00
|
|
|
|
public string QueryExpression { get; set; }
|
2014-06-09 16:42:57 +01:00
|
|
|
|
public IEnumerable<TemplateQueryResult> SampleResults { get; set; }
|
2014-06-08 09:51:06 -07:00
|
|
|
|
public int ResultCount { get; set; }
|
|
|
|
|
|
public double ExecutionTime { get; set; }
|
|
|
|
|
|
public int Take { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|