13 lines
350 B
C#
13 lines
350 B
C#
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
|
|
{
|
|
public class Cast
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Character { get; set; }
|
|
public int Order { get; set; }
|
|
public int Cast_Id { get; set; }
|
|
public string Profile_Path { get; set; }
|
|
}
|
|
}
|