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