aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Crew.cs
blob: 339ecb628566229aa3b1f60816a257034c575533 (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.General
{
    public class Crew
    {
        public int Id { get; set; }

        public string Credit_Id { get; set; }

        public string Name { get; set; }

        public string Department { get; set; }

        public string Job { get; set; }

        public string Profile_Path { get; set; }
    }
}