aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Search/SearchHintResult.cs
blob: 069e7e025bdd42d75373008fd348f481642b4ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace MediaBrowser.Model.Search
{
    /// <summary>
    /// Class SearchHintResult
    /// </summary>
    public class SearchHintResult
    {
        /// <summary>
        /// Gets or sets the search hints.
        /// </summary>
        /// <value>The search hints.</value>
        public SearchHint[] SearchHints { get; set; }

        /// <summary>
        /// Gets or sets the total record count.
        /// </summary>
        /// <value>The total record count.</value>
        public int TotalRecordCount { get; set; }
    }
}