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

14 lines
303 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace TMDbLib.Objects.General
{
public class AlternativeNames
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("results")]
public List<AlternativeName> Results { get; set; }
}
}