blob: 166f9b740866acfaac7d829c71c06dbb2fd827d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Images
{
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}
|