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