jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Collections/Collection.cs

32 lines
759 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
using TMDbLib.Objects.Search;
namespace TMDbLib.Objects.Collections
{
public class Collection
{
[JsonProperty("backdrop_path")]
public string BackdropPath { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("images")]
public Images Images { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("overview")]
public string Overview { get; set; }
[JsonProperty("parts")]
public List<SearchMovie> Parts { get; set; }
[JsonProperty("poster_path")]
public string PosterPath { get; set; }
}
}