jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/Crew.cs

14 lines
291 B
C#

using Newtonsoft.Json;
using TMDbLib.Objects.People;
namespace TMDbLib.Objects.General
{
public class Crew : CrewBase
{
[JsonProperty("credit_id")]
public string CreditId { get; set; }
[JsonProperty("job")]
public string Job { get; set; }
}
}