using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace GreenTree.Strohrmann.ERP.Web.Models.Shared { public class SearchModel { /// /// Path of the model property /// public string ModelPropertyPath { get; set; } /// /// Term to be searched for /// public string SearchTerm { get; set; } } }