using System.Net; using YandexMusic.API.Models.Track; namespace YandexMusic.API.Requests.Track; internal class YGetTrackSimilarBuilder : YMusicRequestBuilder { public YGetTrackSimilarBuilder(YandexMusicApi api) : base(api) { } protected override string Method => WebRequestMethods.Http.Get; protected override string PathTemplate => "tracks/{trackId}/similar"; protected override Dictionary GetSubstitutions(string trackId) => new() { { "trackId", trackId } }; }