blob: 0a8994d540f363362e233adb3a04340c251adf8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma warning disable CS1591
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; }
}
}
|