Add search query

This commit is contained in:
2020-07-16 22:37:24 -04:00
parent 15c38fb650
commit 1e7fa1bb1d
10 changed files with 229 additions and 153 deletions
-1
View File
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Linq;
using LeafWeb.Core.Entities;
using LeafWeb.Core.Utility;
+11
View File
@@ -0,0 +1,11 @@
using System.Collections.Generic;
using LeafWeb.Core.Entities;
namespace LeafWeb.WebCms.Models
{
public class SearchViewModel
{
public IEnumerable<LeafInput> Items { get; set; }
public LeafDataQuery Q { get; set; }
}
}