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