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

14 lines
316 B
C#

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