#nullable disable
namespace MediaBrowser.Model.Search
{
    /// 
    /// Class SearchHintResult.
    /// 
    public class SearchHintResult
    {
        /// 
        /// Gets or sets the search hints.
        /// 
        /// The search hints.
        public SearchHint[] SearchHints { get; set; }
        /// 
        /// Gets or sets the total record count.
        /// 
        /// The total record count.
        public int TotalRecordCount { get; set; }
    }
}