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

13 lines
241 B
C#

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