CollectionImages.cs 345 B

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