namespace MediaBrowser.Providers.Tmdb.Models.Search
{
public class PersonSearchResult
{
///
/// Gets or sets a value indicating whether this is adult.
///
/// true if adult; otherwise, false.
public bool Adult { get; set; }
///
/// Gets or sets the id.
///
/// The id.
public int Id { get; set; }
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the profile_ path.
///
/// The profile_ path.
public string Profile_Path { get; set; }
}
}