SearchModel.cs 466 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace GreenTree.Strohrmann.ERP.Web.Models.Shared
  6. {
  7. public class SearchModel
  8. {
  9. /// <summary>
  10. /// Path of the model property
  11. /// </summary>
  12. public string ModelPropertyPath { get; set; }
  13. /// <summary>
  14. /// Term to be searched for
  15. /// </summary>
  16. public string SearchTerm { get; set; }
  17. }
  18. }