SearchHintInfo.cs 539 B

12345678910111213141516171819202122
  1. using MediaBrowser.Controller.Entities;
  2. namespace MediaBrowser.Controller.Library
  3. {
  4. /// <summary>
  5. /// Class SearchHintInfo
  6. /// </summary>
  7. public class SearchHintInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the item.
  11. /// </summary>
  12. /// <value>The item.</value>
  13. public BaseItem Item { get; set; }
  14. /// <summary>
  15. /// Gets or sets the matched term.
  16. /// </summary>
  17. /// <value>The matched term.</value>
  18. public string MatchedTerm { get; set; }
  19. }
  20. }