using System.Collections.Generic; namespace MediaBrowser.Model.Dto { /// /// Class LibrarySummary /// public class ItemCounts { public int AdultVideoCount { get; set; } /// /// Gets or sets the movie count. /// /// The movie count. public int MovieCount { get; set; } /// /// Gets or sets the series count. /// /// The series count. public int SeriesCount { get; set; } /// /// Gets or sets the episode count. /// /// The episode count. public int EpisodeCount { get; set; } /// /// Gets or sets the game count. /// /// The game count. public int GameCount { get; set; } /// /// Gets or sets the game system count. /// /// The game system count. public int GameSystemCount { get; set; } /// /// Gets or sets the trailer count. /// /// The trailer count. public int TrailerCount { get; set; } /// /// Gets or sets the song count. /// /// The song count. public int SongCount { get; set; } /// /// Gets or sets the album count. /// /// The album count. public int AlbumCount { get; set; } /// /// Gets or sets the music video count. /// /// The music video count. public int MusicVideoCount { get; set; } /// /// Gets or sets the box set count. /// /// The box set count. public int BoxSetCount { get; set; } /// /// Gets or sets the book count. /// /// The book count. public int BookCount { get; set; } /// /// Gets or sets the unique types. /// /// The unique types. public List UniqueTypes { get; set; } public ItemCounts() { UniqueTypes = new List(); } } }