mirror of
https://github.com/jellyfin/TMDbLib.git
synced 2024-11-26 23:30:23 +00:00
Merge pull request #428 from angyanmark/feature/review-created-at-updated-at
Review - Created at and Updated at properties
This commit is contained in:
commit
a6237db470
@ -1,5 +1,5 @@
|
||||
using Newtonsoft.Json;
|
||||
using TMDbLib.Objects.Reviews;
|
||||
using System;
|
||||
|
||||
namespace TMDbLib.Objects.Reviews
|
||||
{
|
||||
@ -19,5 +19,11 @@ namespace TMDbLib.Objects.Reviews
|
||||
|
||||
[JsonProperty("url")]
|
||||
public string Url { get; set; }
|
||||
|
||||
[JsonProperty("created_at")]
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
[JsonProperty("updated_at")]
|
||||
public DateTime UpdatedAt { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user