jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Configuration/APIConfiguration.cs

15 lines
335 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace TMDbLib.Objects.Configuration
{
public class APIConfiguration
{
[JsonProperty("images")]
public APIConfigurationImages Images { get; set; }
[JsonProperty("change_keys")]
public List<string> ChangeKeys { get; set; }
}
}