jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/People/ProfileImages.cs

15 lines
326 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
namespace TMDbLib.Objects.People
{
public class ProfileImages
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("profiles")]
public List<ImageData> Profiles { get; set; }
}
}