blob: 47b9854030c02d60f893e7fb4f8c56b3cfacb8a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace MediaBrowser.Providers.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; }
}
}
|