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