jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Changes/Change.cs

14 lines
293 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.Changes
{
public class Change
{
[JsonProperty("items")]
public List<ChangeItemBase> Items { get; set; }
[JsonProperty("key")]
public string Key { get; set; }
}
}