Images.cs 240 B

12345678910
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
  3. {
  4. public class Images
  5. {
  6. public List<Backdrop> Backdrops { get; set; }
  7. public List<Poster> Posters { get; set; }
  8. }
  9. }