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

14 lines
290 B
C#

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