jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Search/SearchCollection.cs

19 lines
420 B
C#

using Newtonsoft.Json;
namespace TMDbLib.Objects.Search
{
public class SearchCollection
{
[JsonProperty("backdrop_path")]
public string BackdropPath { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("poster_path")]
public string PosterPath { get; set; }
}
}