Search for both LeafInput and LeafInputData

This commit is contained in:
2023-02-02 09:35:22 -05:00
parent 8e16510ad9
commit 680f139aa5
24 changed files with 808 additions and 281 deletions
+11
View File
@@ -0,0 +1,11 @@
using System.Linq;
using LeafWeb.Core.Entities;
namespace LeafWeb.WebCms.Models
{
public class SearchLeafInputViewModel
{
public IQueryable<LeafInput> Results { get; set; }
public LeafDataQuery Q { get; set; }
}
}