ItemCounts.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. public int ArtistCount { get; set; }
  29. public int ProgramCount { 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. public int ItemCount { get; set; }
  66. }
  67. }