mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
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; }
|
|
}
|
|
}
|