static void RemoveShowImagesFromCache(TmdbShowImages images)
 {
     if (images != null)
     {
         Shows.RemoveAll(s => s.Id == images.Id);
     }
 }