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

15 lines
367 B
C#

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