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

17 lines
368 B
C#

using Newtonsoft.Json;
using TMDbLib.Objects.General;
namespace TMDbLib.Objects.Search
{
public class SearchBase
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("media_type")]
public MediaType MediaType { get; set; }
[JsonProperty("popularity")]
public double Popularity { get; set; }
}
}