Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Tmdb/Models/General/Crew.cs

13 lines
350 B
C#
Raw Normal View History

namespace MediaBrowser.Providers.Tmdb.Models.General
{
public class Crew
{
2019-08-18 14:44:13 +02: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; }
}
}