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/ActorSearchResult.cs

33 lines
1.0 KiB

namespace Ombi.Api.TheMovieDb.Models
{
public class ActorResult
{
public float popularity { get; set; }
public int id { get; set; }
public string profile_path { get; set; }
public string name { get; set; }
public Known_For[] known_for { get; set; }
public bool adult { get; set; }
}
public class Known_For
{
public float vote_average { get; set; }
public int vote_count { get; set; }
public int id { get; set; }
public bool video { get; set; }
public string media_type { get; set; }
public string title { get; set; }
public float popularity { get; set; }
public string poster_path { get; set; }
public string original_language { get; set; }
public string original_title { get; set; }
public int[] genre_ids { get; set; }
public string backdrop_path { get; set; }
public bool adult { get; set; }
public string overview { get; set; }
public string release_date { get; set; }
}
}