using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class Video
{
[JsonProperty("id")]
public string Id { get; set; }
///
/// A country code, e.g. US
///
[JsonProperty("iso_3166_1")]
public string Iso_3166_1 { get; set; }
///
/// A language code, e.g. en
///
[JsonProperty("iso_639_1")]
public string Iso_639_1 { get; set; }
[JsonProperty("key")]
public string Key { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("site")]
public string Site { get; set; }
[JsonProperty("size")]
public int Size { get; set; }
[JsonProperty("type")]
public string Type { get; set; }
}
}