Добавьте файлы проекта.
This commit is contained in:
18
YandexMusic.API/Requests/Radio/YGetStationsBuilder.cs
Normal file
18
YandexMusic.API/Requests/Radio/YGetStationsBuilder.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Net;
|
||||
|
||||
using YandexMusic.API.Common;
|
||||
using YandexMusic.API.Models.Common;
|
||||
using YandexMusic.API.Models.Radio;
|
||||
using YandexMusic.API.Requests.Common;
|
||||
using YandexMusic.API.Requests.Common.Attributes;
|
||||
|
||||
namespace YandexMusic.API.Requests.Radio
|
||||
{
|
||||
[YApiRequest(WebRequestMethods.Http.Get, "rotor/stations/list")]
|
||||
public class YGetStationsBuilder : YRequestBuilder<YResponse<List<YStation>>, object>
|
||||
{
|
||||
public YGetStationsBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user