-
Notifications
You must be signed in to change notification settings - Fork 146
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
65 changed files
with
4,029 additions
and
615 deletions.
There are no files selected for viewing
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,14 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
|
||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> | ||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/> | ||
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> | ||
</configuration> |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BiliDuang.JSONCallback.LikeBoxItem | ||
{ | ||
public class DataItem | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string bv_id { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string bvid { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int fav_state { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int fav_time { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int id { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int like_state { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int page { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string short_link { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int type { get; set; } | ||
} | ||
|
||
public class LikeBoxItem | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int code { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public List<DataItem> data { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string message { 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
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
Oops, something went wrong.