-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
231 additions
and
19 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,4 +55,5 @@ public class Trailer | |
public string Runtime { get; set; } | ||
public string Cover_Url { get; set; } | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Emby.Plugins.Douban.Response | ||
{ | ||
public class User | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string loc { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string kind { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string followed { get; set; } | ||
/// <summary> | ||
/// 丹尼斯·维伦纽瓦 | ||
/// </summary> | ||
public string name { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string url { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int verify_type { get; set; } | ||
/// <summary> | ||
/// 导演 丹尼斯·维伦纽瓦 Denis Villeneuve | ||
/// </summary> | ||
public string @abstract { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string reg_time { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string avatar { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string uri { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public List<string> medal_groups { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string remark { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string in_blacklist { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int followers_count { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string id { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string is_banned { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string type { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string avatar_side_icon { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string uid { get; set; } | ||
} | ||
|
||
public class Avatar | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string large { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string normal { get; set; } | ||
} | ||
|
||
public class CelebritiesItem | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public User user { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public List<string> roles { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string latin_name { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string author { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string url { get; set; } | ||
/// <summary> | ||
/// 丹尼斯·维伦纽瓦生于加拿大魁北克,具有法国血统。曾凭借2000年的《迷情漩涡》、2009年的《理工学院》... | ||
/// </summary> | ||
public string @abstract { get; set; } | ||
/// <summary> | ||
/// 丹尼斯·维伦纽瓦(同名)加拿大,魁北克省,三河城影视演员 | ||
/// </summary> | ||
public string title { get; set; } | ||
/// <summary> | ||
/// 导演 Director | ||
/// </summary> | ||
public string character { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string uri { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string cover_url { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public Avatar avatar { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string sharing_url { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string type { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string id { get; set; } | ||
/// <summary> | ||
/// 丹尼斯·维伦纽瓦 | ||
/// </summary> | ||
public string name { get; set; } | ||
} | ||
|
||
public class CreditsItem | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public List<CelebritiesItem> celebrities { get; set; } | ||
/// <summary> | ||
/// 导演 | ||
/// </summary> | ||
public string title { get; set; } | ||
} | ||
|
||
public class SubjectCredits | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public List<CreditsItem> credits { get; set; } | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
obj/Debug/netstandard2.0/Emby.Plugins.Douban.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4a7113c2ae33fd8c874cbbee505085a16ea5f18e | ||
95888f3773cd3d94c2546ed0e1b51bfd187b9d4b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-81.5 KB
obj/Debug/netstandard2.0/Emby.Plugins.Douban.csprojAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters