aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Images.cs
blob: 0538cf174d0e9c4808bd43fd03eba7810cce8364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma warning disable CS1591

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; }
    }
}