Added PublishedAt and Official to Video object

This commit is contained in:
Miatrix 2023-12-07 05:04:13 -06:00
parent d23d3b4af7
commit 0543f35bd6

View File

@ -1,4 +1,5 @@
using Newtonsoft.Json;
using System;
using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
@ -25,6 +26,12 @@ namespace TMDbLib.Objects.General
[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; }