mirror of
https://github.com/jellyfin/TMDbLib.git
synced 2024-11-26 23:30:23 +00:00
Added PublishedAt and Official to Video object
This commit is contained in:
parent
d23d3b4af7
commit
0543f35bd6
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user