17 lines
483 B
C#
17 lines
483 B
C#
using System.Net;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Models.Common;
|
|
using YandexMusic.API.Models.Pins;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Pins;
|
|
|
|
[YApiRequest(WebRequestMethods.Http.Get, "pins")]
|
|
public class YGetPinsBuilder : YRequestBuilder<YResponse<YPins>, object>
|
|
{
|
|
public YGetPinsBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
} |