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.
22 lines
556 B
22 lines
556 B
#nullable disable
|
|
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; }
|
|
}
|
|
}
|