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