PersonResult.cs 892 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
  4. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.People
  5. {
  6. public class PersonResult
  7. {
  8. public bool Adult { get; set; }
  9. public List<string> Also_Known_As { get; set; }
  10. public string Biography { get; set; }
  11. public string Birthday { get; set; }
  12. public string Deathday { get; set; }
  13. public string Homepage { get; set; }
  14. public int Id { get; set; }
  15. public string Imdb_Id { get; set; }
  16. public string Name { get; set; }
  17. public string Place_Of_Birth { get; set; }
  18. public double Popularity { get; set; }
  19. public string Profile_Path { get; set; }
  20. public PersonImages Images { get; set; }
  21. public ExternalIds External_Ids { get; set; }
  22. }
  23. }