jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/People/TvCredits.cs

17 lines
358 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.People
{
public class TvCredits
{
[JsonProperty("cast")]
public List<TvRole> Cast { get; set; }
[JsonProperty("crew")]
public List<TvJob> Crew { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
}
}