using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.Movies
{
public class ReleaseDatesContainer
{
///
/// A country code, e.g. US
///
[JsonProperty("iso_3166_1")]
public string Iso_3166_1 { get; set; }
[JsonProperty("release_dates")]
public List ReleaseDates { get; set; }
}
}