using System.Collections.Generic; using Newtonsoft.Json; using TMDbLib.Objects.People; namespace TMDbLib.Objects.General { public class CrewAggregate : CrewBase { [JsonProperty("jobs")] public List Jobs { get; set; } [JsonProperty("total_episode_count")] public int TotalEpisodeCount { get; set; } } }