ItemCounts.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. 
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Dto
  4. {
  5. /// <summary>
  6. /// Class LibrarySummary
  7. /// </summary>
  8. public class ItemCounts
  9. {
  10. public int AdultVideoCount { get; set; }
  11. /// <summary>
  12. /// Gets or sets the movie count.
  13. /// </summary>
  14. /// <value>The movie count.</value>
  15. public int MovieCount { get; set; }
  16. /// <summary>
  17. /// Gets or sets the series count.
  18. /// </summary>
  19. /// <value>The series count.</value>
  20. public int SeriesCount { get; set; }
  21. /// <summary>
  22. /// Gets or sets the episode count.
  23. /// </summary>
  24. /// <value>The episode count.</value>
  25. public int EpisodeCount { get; set; }
  26. /// <summary>
  27. /// Gets or sets the game count.
  28. /// </summary>
  29. /// <value>The game count.</value>
  30. public int GameCount { get; set; }
  31. /// <summary>
  32. /// Gets or sets the game system count.
  33. /// </summary>
  34. /// <value>The game system count.</value>
  35. public int GameSystemCount { get; set; }
  36. /// <summary>
  37. /// Gets or sets the trailer count.
  38. /// </summary>
  39. /// <value>The trailer count.</value>
  40. public int TrailerCount { get; set; }
  41. /// <summary>
  42. /// Gets or sets the song count.
  43. /// </summary>
  44. /// <value>The song count.</value>
  45. public int SongCount { get; set; }
  46. /// <summary>
  47. /// Gets or sets the album count.
  48. /// </summary>
  49. /// <value>The album count.</value>
  50. public int AlbumCount { get; set; }
  51. /// <summary>
  52. /// Gets or sets the music video count.
  53. /// </summary>
  54. /// <value>The music video count.</value>
  55. public int MusicVideoCount { get; set; }
  56. /// <summary>
  57. /// Gets or sets the box set count.
  58. /// </summary>
  59. /// <value>The box set count.</value>
  60. public int BoxSetCount { get; set; }
  61. /// <summary>
  62. /// Gets or sets the book count.
  63. /// </summary>
  64. /// <value>The book count.</value>
  65. public int BookCount { get; set; }
  66. /// <summary>
  67. /// Gets or sets the unique types.
  68. /// </summary>
  69. /// <value>The unique types.</value>
  70. public List<string> UniqueTypes { get; set; }
  71. public ItemCounts()
  72. {
  73. UniqueTypes = new List<string>();
  74. }
  75. }
  76. }