using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Library { /// /// Class SearchHintInfo. /// public class SearchHintInfo { /// /// Gets or sets the item. /// /// The item. public BaseItem Item { get; set; } /// /// Gets or sets the matched term. /// /// The matched term. public string MatchedTerm { get; set; } } }