mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
13 lines
342 B
C#
13 lines
342 B
C#
namespace MediaBrowser.Providers.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; }
|
|
}
|
|
}
|