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

9 lines
247 B
C#

namespace YandexMusic.API.Models.Playlist;
public class YPlaylistPlayCounter
{
public string Description { get; set; }
public string DescriptionNext { get; set; }
public bool Updated { get; set; }
public int? Value { get; set; }
}