Images.cs 273 B

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