Merge pull request #428 from angyanmark/feature/review-created-at-updated-at

Review - Created at and Updated at properties
This commit is contained in:
Claus Vium 2023-09-16 22:39:06 +02:00 committed by GitHub
commit a6237db470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; }
}
}