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

35 lines
842 B
C#

using System;
using Newtonsoft.Json;
namespace TMDbLib.Objects.People
{
public class TvJob
{
[JsonProperty("credit_id")]
public string CreditId { get; set; }
[JsonProperty("department")]
public string Department { get; set; }
[JsonProperty("episode_count")]
public int EpisodeCount { get; set; }
[JsonProperty("first_air_date")]
public DateTime? FirstAirDate { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("job")]
public string Job { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("original_name")]
public string OriginalName { get; set; }
[JsonProperty("poster_path")]
public string PosterPath { get; set; }
}
}