16 lines
458 B
C#
16 lines
458 B
C#
using System.Net;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Models.Account;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Account;
|
|
|
|
[YLoginRequest(WebRequestMethods.Http.Get, "info")]
|
|
public class YGetLoginInfoBuilder : YRequestBuilder<YLoginInfo, object>
|
|
{
|
|
public YGetLoginInfoBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
} |