using System.Net; using YandexMusic.API.Models.Landing; using YandexMusic.API.Requests.Common; namespace YandexMusic.API.Requests.Landing; public class YGetChildrenLandingBuilder : YMusicRequestBuilder { public YGetChildrenLandingBuilder(YandexMusicApi api) : base(api) { } protected override string Method => WebRequestMethods.Http.Get; protected override string PathTemplate => "children-landing/catalogue"; }