aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/SearchHintInfo.cs
blob: 897c2b7f492f1e7996e471c8a5a375771f19d5ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Library
{
    /// <summary>
    /// Class SearchHintInfo.
    /// </summary>
    public class SearchHintInfo
    {
        /// <summary>
        /// Gets or sets the item.
        /// </summary>
        /// <value>The item.</value>
        public BaseItem Item { get; set; }

        /// <summary>
        /// Gets or sets the matched term.
        /// </summary>
        /// <value>The matched term.</value>
        public string MatchedTerm { get; set; }
    }
}