SearchHint.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. using System;
  2. namespace MediaBrowser.Model.Search
  3. {
  4. /// <summary>
  5. /// Class SearchHintResult
  6. /// </summary>
  7. public class SearchHint
  8. {
  9. /// <summary>
  10. /// Gets or sets the item id.
  11. /// </summary>
  12. /// <value>The item id.</value>
  13. public string ItemId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the name.
  16. /// </summary>
  17. /// <value>The name.</value>
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// Gets or sets the matched term.
  21. /// </summary>
  22. /// <value>The matched term.</value>
  23. public string MatchedTerm { get; set; }
  24. /// <summary>
  25. /// Gets or sets the index number.
  26. /// </summary>
  27. /// <value>The index number.</value>
  28. public int? IndexNumber { get; set; }
  29. /// <summary>
  30. /// Gets or sets the parent index number.
  31. /// </summary>
  32. /// <value>The parent index number.</value>
  33. public int? ParentIndexNumber { get; set; }
  34. /// <summary>
  35. /// Gets or sets the image tag.
  36. /// </summary>
  37. /// <value>The image tag.</value>
  38. public Guid? PrimaryImageTag { get; set; }
  39. /// <summary>
  40. /// Gets or sets the type.
  41. /// </summary>
  42. /// <value>The type.</value>
  43. public string Type { get; set; }
  44. /// <summary>
  45. /// Gets or sets the run time ticks.
  46. /// </summary>
  47. /// <value>The run time ticks.</value>
  48. public long? RunTimeTicks { get; set; }
  49. /// <summary>
  50. /// Gets or sets the type of the media.
  51. /// </summary>
  52. /// <value>The type of the media.</value>
  53. public string MediaType { get; set; }
  54. /// <summary>
  55. /// Gets or sets the display type of the media.
  56. /// </summary>
  57. /// <value>The display type of the media.</value>
  58. public string DisplayMediaType { get; set; }
  59. /// <summary>
  60. /// Gets or sets the series.
  61. /// </summary>
  62. /// <value>The series.</value>
  63. public string Series { get; set; }
  64. /// <summary>
  65. /// Gets or sets the album.
  66. /// </summary>
  67. /// <value>The album.</value>
  68. public string Album { get; set; }
  69. /// <summary>
  70. /// Gets or sets the album artist.
  71. /// </summary>
  72. /// <value>The album artist.</value>
  73. public string AlbumArtist { get; set; }
  74. /// <summary>
  75. /// Gets or sets the artists.
  76. /// </summary>
  77. /// <value>The artists.</value>
  78. public string[] Artists { get; set; }
  79. /// <summary>
  80. /// Gets or sets the song count.
  81. /// </summary>
  82. /// <value>The song count.</value>
  83. public int? SongCount { get; set; }
  84. /// <summary>
  85. /// Gets or sets the episode count.
  86. /// </summary>
  87. /// <value>The episode count.</value>
  88. public int? EpisodeCount { get; set; }
  89. }
  90. }