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