blob: bbeac878a0314a759b2a0eecc9a08177ef7e1a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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; }
}
}
|