public void UpdateUrls(TMDbSeriesInfo info, int posterWidth, int backdropWidth, int stillWidth)
        {
            info.PosterUrl = this.GetUrl(info.PosterPath, ImageType.Poster, posterWidth);
            info.BackdropUrl = this.GetUrl(info.BackdropPath, ImageType.Backdrop, backdropWidth);

            if (info.SeasonInfoes != null)
            {
                foreach (var seasonInfo in info.SeasonInfoes)
                {
                    this.UpdateUrls(seasonInfo, posterWidth, stillWidth);
                }
            }
        }