25 lines
796 B
C#
25 lines
796 B
C#
using System.Net;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Models.Common;
|
|
using YandexMusic.API.Models.Playlist;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Playlist
|
|
{
|
|
[YApiRequest(WebRequestMethods.Http.Get, "users/{uid}/playlists/list")]
|
|
public class YGetPlaylistFavoritesBuilder : YRequestBuilder<YResponse<List<YPlaylist>>, object>
|
|
{
|
|
public YGetPlaylistFavoritesBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
|
|
protected override Dictionary<string, string> GetSubstitutions(object tuple)
|
|
{
|
|
return new Dictionary<string, string> {
|
|
{ "uid", storage.User.Uid }
|
|
};
|
|
}
|
|
}
|
|
} |