jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Movies/KeywordsContainer.cs

15 lines
328 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
namespace TMDbLib.Objects.Movies
{
public class KeywordsContainer
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("keywords")]
public List<Keyword> Keywords { get; set; }
}
}