Files
Umbraco-CMS/src/Umbraco.Web/Models/TemplateQuery/QueryResultModel.cs

16 lines
392 B
C#
Raw Normal View History

2014-06-08 09:51:06 -07:00
using System.Collections.Generic;
namespace Umbraco.Web.Models.TemplateQuery
2014-06-08 09:51:06 -07:00
{
2017-07-20 11:21:28 +02:00
public class QueryResultModel
2014-06-08 09:51:06 -07:00
{
2017-07-20 11:21:28 +02:00
2014-06-08 09:51:06 -07:00
public string QueryExpression { get; set; }
public IEnumerable<TemplateQueryResult> SampleResults { get; set; }
2014-06-08 09:51:06 -07:00
public int ResultCount { get; set; }
public long ExecutionTime { get; set; }
2014-06-08 09:51:06 -07:00
public int Take { get; set; }
}
2017-07-20 11:21:28 +02:00
}