diff --git a/TMDbLib/Objects/General/Video.cs b/TMDbLib/Objects/General/Video.cs index 694aa63f..62c3a458 100644 --- a/TMDbLib/Objects/General/Video.cs +++ b/TMDbLib/Objects/General/Video.cs @@ -1,4 +1,5 @@ -using Newtonsoft.Json; +using System; +using Newtonsoft.Json; namespace TMDbLib.Objects.General { @@ -25,6 +26,12 @@ public class Video [JsonProperty("name")] public string Name { get; set; } + [JsonProperty("official")] + public bool Official { get; set; } + + [JsonProperty("published_at")] + public DateTime PublishedAt { get; set; } + [JsonProperty("site")] public string Site { get; set; }