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

修复播放页收藏夹列表问题 #1702

Merged
merged 2 commits into from
Jun 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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