ItemCounts.cs 2.4 KB

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