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

9 lines
208 B
C#

namespace YandexMusic.API.Models.Radio;
public class YStationsDashboard
{
public string DashboardId { get; set; }
public bool Pumpkin { get; set; }
public List<YStation> Stations { get; set; }
}