aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Search/SearchHintResult.cs
blob: 3c4fbec9e82b9922115f7f4f72482c54908bb937 (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; }
    }
}