Skip to content

Commit cdd1ab1

Browse files
committed
chore: fix artist wrong name
1 parent 463cc6f commit cdd1ab1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HyPlayer.NeteaseApi/ApiContracts/Artist/ArtistDetailApi.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,15 @@ public class ArtistDetailDto
5454
[JsonPropertyName("name")] public string? Name { get; set; }
5555
[JsonPropertyName("alias")] public string[]? Alias { get; set; }
5656
[JsonPropertyName("followed")] public bool Followed { get; set; }
57-
[JsonPropertyName("cover")] public string? PicUrl { get; set; }
58-
[JsonPropertyName("avatar")] public string? Img1v1Url { get; set; }
57+
[JsonPropertyName("picUrl")] public string? PicUrl { get; set; }
58+
[JsonPropertyName("img1v1Url")] public string? Img1v1Url { get; set; }
5959
[JsonPropertyName("briefDesc")] public string? BriefDesc { get; set; }
6060
[JsonPropertyName("trans")] public string? Translation { get; set; }
6161
[JsonPropertyName("musicSize")] public int MusicSize { get; set; }
6262
[JsonPropertyName("albumSize")] public int AlbumSize { get; set; }
6363
[JsonPropertyName("mvSize")] public int MvSize { get; set; }
6464
[JsonPropertyName("transNames")] public string[]? TransNames { get; set; }
65+
[JsonPropertyName("accountId")] public string? AccountId { get; set; }
6566
}
6667
}
6768

0 commit comments

Comments
 (0)