-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
1 parent
ea4b458
commit 0f2cae9
Showing
12 changed files
with
350 additions
and
71 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
45 changes: 45 additions & 0 deletions
45
src/Ray.BiliBiliTool.Agent/BiliBiliAgent/Dtos/Video/GetBangumiBySsidResponse.cs
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,45 @@ | ||
using static System.Collections.Specialized.BitVector32; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Xml.Linq; | ||
|
||
namespace Ray.BiliBiliTool.Agent.BiliBiliAgent.Dtos.Video; | ||
|
||
public class GetBangumiBySsidResponse | ||
{ | ||
public int Code { get; set; } = int.MinValue; | ||
|
||
public string Message { get; set; } | ||
|
||
public Result Result { get; set; } | ||
} | ||
|
||
public class Result | ||
{ | ||
public List<Episode> episodes { get; set; } | ||
} | ||
|
||
|
||
public class Episode | ||
{ | ||
public int aid { get; set; } | ||
|
||
public string bvid { get; set; } | ||
|
||
public int cid { get; set; } | ||
|
||
public int duration { get; set; } | ||
|
||
public int ep_id { get; set; } | ||
|
||
public int id { get; set; } | ||
|
||
public string long_title { get; set; } | ||
|
||
public string share_copy { get; set; } | ||
|
||
public int status { 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
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.