jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Crew.cs

13 lines
358 B
C#
Raw Normal View History

2020-05-31 06:23:09 +00:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Crew
{
2019-08-18 12:44:13 +00:00
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; }
}
}