AB4549 - Moved models from web to abstractions and infrastructure

This commit is contained in:
Bjarke Berg
2020-01-15 09:05:26 +01:00
parent 2c7c556c5f
commit 1e5c00878b
79 changed files with 5 additions and 89 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 long ExecutionTime { get; set; }
public int Take { get; set; }
}
}