9 lines
208 B
C#
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; }
|
|
}
|