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

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
    public class Cast
    {
        public string Character { get; set; }

        public string Credit_Id { get; set; }

        public int Id { get; set; }

        public string Name { get; set; }

        public string Profile_Path { get; set; }

        public int Order { get; set; }
    }
}