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