aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs
blob: a48124b3e1672c083d0d45f1ade9f21097bea23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

namespace MediaBrowser.Providers.Plugins.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; }
    }
}