-
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.
Improve #9
- Loading branch information
Showing
9 changed files
with
481 additions
and
20 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
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,79 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BiliDuang.JSONCallback.QRLoginInfo | ||
{ | ||
public class Data | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string url { get; set; } | ||
} | ||
|
||
public class QRLoginInfoNoData | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int code { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string status { get; set; } | ||
//public int data { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int ts { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string message { get; set; } | ||
} | ||
|
||
public class QRLoginInfoDataInt | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int code { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string status { get; set; } | ||
public int data { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int ts { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string message { get; set; } | ||
} | ||
|
||
public class QRLoginInfoData | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int code { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string status { get; set; } | ||
public Data data { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int ts { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BiliDuang.JSONCallback.QRUrl | ||
{ | ||
public class Data | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string url { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string oauthKey { get; set; } | ||
} | ||
|
||
public class QRUrl | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int code { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string status { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public int ts { get; set; } | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public Data data { get; set; } | ||
} | ||
|
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.