20 lines
387 B
C#
20 lines
387 B
C#
#pragma warning disable CS1591
|
|
|
|
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; }
|
|
}
|
|
}
|