Files
YandexMusic/YandexMusic.API/Requests/Feed/YGetFeedBuilder.cs
FrigaT 36e28ce3fe
All checks were successful
Release / pack-and-publish (release) Successful in 36s
Полностью переписанное api
2026-04-19 17:00:05 +03:00

12 lines
394 B
C#

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