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