Files
YandexMusic/YandexMusic.API/Requests/Feed/YGetFeedBuilder.cs
FrigaT add7f08215
All checks were successful
Release / pack-and-publish (release) Successful in 32s
Добавлен вывод AuthStorage. Спрятаны внутренние api запросы
2026-04-19 17:41:30 +03:00

11 lines
357 B
C#

using System.Net;
using YandexMusic.API.Models.Feed;
namespace YandexMusic.API.Requests.Feed;
internal class YGetFeedBuilder : YMusicRequestBuilder<YFeed?, object>
{
public YGetFeedBuilder(YandexMusicApi api) : base(api) { }
protected override string Method => WebRequestMethods.Http.Get;
protected override string PathTemplate => "feed";
}