fix: Fixed the issue where incorrect artist names were obtained when downloading NetEase Cloud Music playlists.

This commit is contained in:
real-zony 2023-05-24 20:50:24 +08:00
parent 62d08df735
commit 98c935ed93

View File

@ -38,7 +38,7 @@ public sealed class PlayListSongModel
/// <summary>
/// 歌曲的艺术家信息,可能会有多位艺术家/歌手。
/// </summary>
[JsonProperty("al")]
[JsonProperty("ar")]
[JsonConverter(typeof(PlayListSongArtistModelJsonConverter))]
public ICollection<PlayListSongArtistModel>? Artists { get; set; }
}