2020-05-30 23:23:09 -07:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
2019-08-18 04:20:52 -07:00
|
|
|
{
|
|
|
|
public class Cast
|
|
|
|
{
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Character { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Credit_Id { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public int Id { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Name { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Profile_Path { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public int Order { get; set; }
|
2019-08-18 04:20:52 -07:00
|
|
|
}
|
|
|
|
}
|