mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
13 lines
344 B
C#
13 lines
344 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
|
{
|
|
public class EpisodeCredits
|
|
{
|
|
public List<Cast> Cast { get; set; }
|
|
public List<Crew> Crew { get; set; }
|
|
public List<GuestStar> Guest_Stars { get; set; }
|
|
}
|
|
}
|