mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
13 lines
283 B
C#
13 lines
283 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
|
|
{
|
|
public class Casts
|
|
{
|
|
public List<Cast> Cast { get; set; }
|
|
|
|
public List<Crew> Crew { get; set; }
|
|
}
|
|
}
|