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

9 lines
201 B
C#

namespace YandexMusic.API.Models.Artist
{
public class YArtistRatings
{
public int Day { get; set; }
public int Month { get; set; }
public int Week { get; set; }
}
}