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

17 lines
367 B
C#

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