diff --git a/TMDbLib/Objects/General/Video.cs b/TMDbLib/Objects/General/Video.cs index 62c3a458..2fc71c41 100644 --- a/TMDbLib/Objects/General/Video.cs +++ b/TMDbLib/Objects/General/Video.cs @@ -1,5 +1,6 @@ using System; using Newtonsoft.Json; +using TMDbLib.Utilities.Converters; namespace TMDbLib.Objects.General { @@ -30,6 +31,7 @@ public class Video public bool Official { get; set; } [JsonProperty("published_at")] + [JsonConverter(typeof(CustomDatetimeFormatConverter))] public DateTime PublishedAt { get; set; } [JsonProperty("site")]