SearchHintResult.cs 556 B

123456789101112131415161718192021
  1. #nullable disable
  2. namespace MediaBrowser.Model.Search
  3. {
  4. /// <summary>
  5. /// Class SearchHintResult.
  6. /// </summary>
  7. public class SearchHintResult
  8. {
  9. /// <summary>
  10. /// Gets or sets the search hints.
  11. /// </summary>
  12. /// <value>The search hints.</value>
  13. public SearchHint[] SearchHints { get; set; }
  14. /// <summary>
  15. /// Gets or sets the total record count.
  16. /// </summary>
  17. /// <value>The total record count.</value>
  18. public int TotalRecordCount { get; set; }
  19. }
  20. }