using System.Net; using YandexMusic.API.Models.Account; using YandexMusic.API.Requests.Common; namespace YandexMusic.API.Requests.Account; public class YGetLoginInfoBuilder : YAuthRequestBuilder { public YGetLoginInfoBuilder(YandexMusicApi api) : base(api) { } protected override string Method => WebRequestMethods.Http.Get; protected override string PathTemplate => "info"; }