ItemCounts.cs 2.5 KB

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