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