aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/CollectionResult.cs
blob: 3437552df75ceb112b5e63b659154417be24886a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Collections.Generic;

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
{
    public class CollectionResult
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Overview { get; set; }
        public string Poster_Path { get; set; }
        public string Backdrop_Path { get; set; }
        public List<Part> Parts { get; set; }
        public CollectionImages Images { get; set; }
    }
}