jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/PersonResult.cs

27 lines
648 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.Search;
namespace TMDbLib.Objects.General
{
public class PersonResult
{
[JsonProperty("adult")]
public bool Adult { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("known_for")]
public List<KnownForBase> KnownFor { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("popularity")]
public double Popularity { get; set; }
[JsonProperty("profile_path")]
public string ProfilePath { get; set; }
}
}