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

11 lines
248 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.TvShows
{
public class CreditsWithGuestStars : Credits
{
[JsonProperty("guest_stars")]
public List<Cast> GuestStars { get; set; }
}
}