blob: 6a5e74ddbe95c7929c3553cf9b0647efa04610e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|