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

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