ItemCounts.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. /// <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. public int ItemCount { get; set; }
  65. }
  66. }