Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/Credits.cs

15 lines
313 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2020-05-31 15:23:09 +09:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class Credits
{
2019-08-18 14:44:13 +02:00
public List<Cast> Cast { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public List<Crew> Crew { get; set; }
}
}