jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/People/PersonResult.cs

39 lines
892 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2020-05-30 23:23:09 -07:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.People
{
public class PersonResult
{
2019-08-18 05:44:13 -07:00
public bool Adult { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public List<string> Also_Known_As { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Biography { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Birthday { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Deathday { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Homepage { 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 Imdb_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 Place_Of_Birth { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public double Popularity { 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 PersonImages Images { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public ExternalIds External_Ids { get; set; }
}
}