Files
YandexMusic/YandexMusic.API/Models/Artist/YArtistCounts.cs
2026-04-10 12:12:33 +03:00

10 lines
260 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; }
}
}