SearchHintInfo.cs 559 B

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