using System.Collections.Generic;
namespace MediaBrowser.Model.Search
{
///
/// Class SearchHintResult.
///
public class SearchHintResult
{
///
/// Initializes a new instance of the class.
///
/// The search hints.
/// The total record count.
public SearchHintResult(IReadOnlyList searchHints, int totalRecordCount)
{
SearchHints = searchHints;
TotalRecordCount = totalRecordCount;
}
///
/// Gets the search hints.
///
/// The search hints.
public IReadOnlyList SearchHints { get; }
///
/// Gets the total record count.
///
/// The total record count.
public int TotalRecordCount { get; }
}
}