//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Search;
using global::System.Collections.Generic;
///
/// 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; }
}