11 lines
418 B
C#
11 lines
418 B
C#
using System.Net;
|
|
using YandexMusic.API.Models.Radio;
|
|
|
|
namespace YandexMusic.API.Requests.Radio;
|
|
|
|
internal class YGetStationsDashboardBuilder : YMusicRequestBuilder<YStationsDashboard?, object>
|
|
{
|
|
public YGetStationsDashboardBuilder(YandexMusicApi api) : base(api) { }
|
|
protected override string Method => WebRequestMethods.Http.Get;
|
|
protected override string PathTemplate => "rotor/stations/dashboard";
|
|
} |