namespace MediaBrowser.Model.Dto
{
    /// 
    /// Class ItemByNameCounts
    /// 
    public class ItemByNameCounts
    {
        /// 
        /// Gets or sets the total count.
        /// 
        /// The total count.
        public int TotalCount { get; set; }
        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 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; }
    }
}