Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
修复播放页收藏夹列表问题 (#1702)
Browse files Browse the repository at this point in the history
* 修复播放页收藏夹列表问题 (#1666, #1669, #1694)

* Update FavoriteListResponse.cs
  • Loading branch information
QiE2035 committed Jun 1, 2023
1 parent 0f677fd commit d26bca3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Models/Models.BiliBili/Player/FavoriteListResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ public class FavoriteMeta
/// 收藏夹完整Id.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "id", Required = Required.Default)]
public int Id { get; set; }
public long Id { get; set; }

/// <summary>
/// 收藏夹原始Id.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "fid", Required = Required.Default)]
public int FolderId { get; set; }
public long FolderId { get; set; }

/// <summary>
/// 用户Id.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "mid", Required = Required.Default)]
public int UserId { get; set; }
public long UserId { get; set; }

/// <summary>
/// 收藏夹标题.
Expand Down

0 comments on commit d26bca3

Please sign in to comment.