Files
YandexMusic/YandexMusic.API/Models/Artist/YArtistCounts.cs
2026-04-10 15:05:32 +03:00

9 lines
230 B
C#

namespace YandexMusic.API.Models.Artist;
public class YArtistCounts
{
public int AlsoAlbums { get; set; }
public int AlsoTracks { get; set; }
public int DirectAlbums { get; set; }
public int Tracks { get; set; }
}