CollectionImages.cs 312 B

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