| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace GreenTree.Strohrmann.ERP.Web.Models.Shared
- {
- public interface ISearchResult
- {
- /// <summary>
- /// Search result id
- /// </summary>
- public object SearchId { get; }
- /// <summary>
- /// Search result text
- /// </summary>
- public string SearchText { get; }
- }
- }
|