You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Search/SearchHintResult.cs

22 lines
541 B

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; }
}
}