jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/TranslationsContainer.cs

14 lines
314 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class TranslationsContainer
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("translations")]
public List<Translation> Translations { get; set; }
}
}