jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/TvShows/CastRole.cs

17 lines
383 B
C#

using Newtonsoft.Json;
using TMDbLib.Objects.People;
namespace TMDbLib.Objects.TvShows
{
public class CastRole
{
[JsonProperty("character")]
public string Character { get; set; }
[JsonProperty("credit_id")]
public string CreditId { get; set; }
[JsonProperty("episode_count")]
public int EpisodeCount { get; set; }
}
}