ItemCounts.cs 2.1 KB

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