aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Tmdb/Models/Collections/Part.cs
blob: ff19291c74d568d0bc583ef38330003e8c28d75d (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Providers.Tmdb.Models.Collections
{
    public class Part
    {
        public string Title { get; set; }
        public int Id { get; set; }
        public string Release_Date { get; set; }
        public string Poster_Path { get; set; }
        public string Backdrop_Path { get; set; }
    }
}