You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.TheMovieDbApi/Models/ActorCredits.cs

51 lines
1.7 KiB

namespace Ombi.Api.TheMovieDb.Models
{
public class ActorCredits
{
public Cast[] cast { get; set; }
public Crew[] crew { get; set; }
public int id { get; set; }
}
public class Cast
{
public string character { get; set; }
public string credit_id { get; set; }
public string poster_path { get; set; }
public int id { get; set; }
public bool video { get; set; }
public int vote_count { get; set; }
public bool adult { get; set; }
public string backdrop_path { get; set; }
public int?[] genre_ids { get; set; }
public string original_language { get; set; }
public string original_title { get; set; }
public float popularity { get; set; }
public string title { get; set; }
public float vote_average { get; set; }
public string overview { get; set; }
public string release_date { get; set; }
}
public class Crew
{
public int id { get; set; }
public string department { get; set; }
public string original_language { get; set; }
public string original_title { get; set; }
public string job { get; set; }
public string overview { get; set; }
public int vote_count { get; set; }
public bool video { get; set; }
public string release_date { get; set; }
public float vote_average { get; set; }
public string title { get; set; }
public float popularity { get; set; }
public int?[] genre_ids { get; set; }
public string backdrop_path { get; set; }
public bool adult { get; set; }
public string poster_path { get; set; }
public string credit_id { get; set; }
}
}