ISearchResult.cs 438 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 interface ISearchResult
  8. {
  9. /// <summary>
  10. /// Search result id
  11. /// </summary>
  12. public object SearchId { get; }
  13. /// <summary>
  14. /// Search result text
  15. /// </summary>
  16. public string SearchText { get; }
  17. }
  18. }