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

9 lines
248 B
C#

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