fix Artist api
All checks were successful
Release / pack-and-publish (release) Successful in 40s

This commit is contained in:
FrigaT
2026-04-16 18:43:07 +03:00
parent ea9f392896
commit 5541d0ad27
3 changed files with 29 additions and 28 deletions

View File

@@ -1,4 +1,3 @@
using System.Text.Json.Serialization;
using YandexMusic.API.Models.Album;
using YandexMusic.API.Models.Common;
using YandexMusic.API.Models.Common.Cover;
@@ -11,7 +10,6 @@ public class YArtistBriefInfo
{
public YButton ActionButton { get; set; }
public List<YAlbum> Albums { get; set; }
[JsonConverter(typeof(YCoverConverter))]
public List<YCover> AllCovers { get; set; }
public List<YAlbum> AlsoAlbums { get; set; }
public YArtist Artist { get; set; }