mirror of
https://github.com/jellyfin/TMDbLib.git
synced 2024-11-23 05:40:12 +00:00
Merge pull request #386 from wickedhanzo/feature/review_add_authordetails
Add Authordetails to Reviews
This commit is contained in:
commit
942e5ba2ee
19
TMDbLib/Objects/Reviews/AuthorDetails.cs
Normal file
19
TMDbLib/Objects/Reviews/AuthorDetails.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace TMDbLib.Objects.Reviews
|
||||
{
|
||||
public class AuthorDetails
|
||||
{
|
||||
[JsonProperty("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[JsonProperty("username")]
|
||||
public string Username { get; set; }
|
||||
|
||||
[JsonProperty("avatar_path")]
|
||||
public string AvatarPath { get; set; }
|
||||
|
||||
[JsonProperty("rating")]
|
||||
public string Rating { get; set; }
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
using Newtonsoft.Json;
|
||||
using TMDbLib.Objects.Reviews;
|
||||
|
||||
namespace TMDbLib.Objects.Reviews
|
||||
{
|
||||
@ -7,6 +8,9 @@ namespace TMDbLib.Objects.Reviews
|
||||
[JsonProperty("author")]
|
||||
public string Author { get; set; }
|
||||
|
||||
[JsonProperty("author_details")]
|
||||
public AuthorDetails AuthorDetails { get; set; }
|
||||
|
||||
[JsonProperty("content")]
|
||||
public string Content { get; set; }
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
{
|
||||
author: Per Gunnar Jonsson,
|
||||
author_details: {
|
||||
name: Per Gunnar Jonsson,
|
||||
username: Dark Jedi,
|
||||
avatar_path: /https://secure.gravatar.com/avatar/cbabaea0fa98692d00130498d7ac5d7c.jpg,
|
||||
rating: 4.0
|
||||
},
|
||||
content:
|
||||
My god what a disappointment! The original movie had a script worth watching and some good action and special effects. This one, well this was a typical Hollywood script written by someone who either was incredibly stupid or just too arrogant to care. It is a script that I would expect from a SyFy channel production.
|
||||
|
||||
|
@ -4,6 +4,12 @@
|
||||
media_title: The Dark Knight Rises,
|
||||
media_type: movie,
|
||||
author: Travis Bell,
|
||||
author_details: {
|
||||
name: Travis Bell,
|
||||
username: travisbell,
|
||||
avatar_path: /xy44UvpbTgzs9kWmp4C3fEaCl5h.png,
|
||||
rating: 9.0
|
||||
},
|
||||
content:
|
||||
I felt like this was a tremendous end to Nolan's Batman trilogy. The Dark Knight Rises may very well have been the weakest of all 3 films but when you're talking about a scale of this magnitude, it still makes this one of the best movies I've seen in the past few years.
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
author: slyone10001,
|
||||
author_details: {
|
||||
name: ,
|
||||
username: slyone10001,
|
||||
rating: 10.0
|
||||
},
|
||||
content: Wow....where to start. Not really into "DRUG" inspired shows. But this one had me from the start. The only bad about this show was the split seasons when it was a first run show. But now you can go right through to the next episode with out having to wait.....MUST WATCH ! !,
|
||||
id: 5accdbe6c3a3687e2702d058,
|
||||
url: https://www.themoviedb.org/review/5accdbe6c3a3687e2702d058
|
||||
|
Loading…
Reference in New Issue
Block a user