using System.Net; using YandexMusic.API.Models.Radio; namespace YandexMusic.API.Requests.Radio; internal class YGetStationsDashboardBuilder : YMusicRequestBuilder { public YGetStationsDashboardBuilder(YandexMusicApi api) : base(api) { } protected override string Method => WebRequestMethods.Http.Get; protected override string PathTemplate => "rotor/stations/dashboard"; }