using System.Net; using YandexMusic.API.Common; using YandexMusic.API.Models.Common; using YandexMusic.API.Models.Track; using YandexMusic.API.Requests.Common; using YandexMusic.API.Requests.Common.Attributes; namespace YandexMusic.API.Requests.Track; [YApiRequest(WebRequestMethods.Http.Get, "tracks/{trackId}/similar")] public class YGetTrackSimilarBuilder : YRequestBuilder, string> { public YGetTrackSimilarBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth) { } protected override Dictionary GetSubstitutions(string trackId) { return new Dictionary { { "trackId", trackId } }; } }