Files
YandexMusic/YandexMusic.API/Models/Artist/YArtistBriefInfo.cs
FrigaT 5541d0ad27
All checks were successful
Release / pack-and-publish (release) Successful in 40s
fix Artist api
2026-04-16 18:43:07 +03:00

34 lines
1.4 KiB
C#

using YandexMusic.API.Models.Album;
using YandexMusic.API.Models.Common;
using YandexMusic.API.Models.Common.Cover;
using YandexMusic.API.Models.Playlist;
using YandexMusic.API.Models.Track;
namespace YandexMusic.API.Models.Artist;
public class YArtistBriefInfo
{
public YButton ActionButton { get; set; }
public List<YAlbum> Albums { get; set; }
public List<YCover> AllCovers { get; set; }
public List<YAlbum> AlsoAlbums { get; set; }
public YArtist Artist { get; set; }
public string BackgroundVideoUrl { get; set; }
public YBandlinkScannerLink BandlinkScannerLink { get; set; }
public List<YClip> Clips { get; set; }
public List<YConcert> Concerts { get; set; }
public YCustomWave CustomWave { get; set; }
public List<YExtraAction> ExtraActions { get; set; }
public bool HasPromotions { get; set; }
public bool HasTrailer { get; set; }
public List<string> LastReleaseIds { get; set; }
public List<YAlbum> LastReleases { get; set; }
public List<YPlaylistUidPair> PlaylistIds { get; set; }
public List<YPlaylist> Playlists { get; set; }
public List<YTrack> PopularTracks { get; set; }
public List<YArtist> SimilarArtists { get; set; }
public YStats Stats { get; set; }
public List<YVideo> Videos { get; set; }
public List<YVinyl> Vinyls { get; set; }
public List<YLink> Links { get; set; }
}