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