11 lines
418 B
C#
11 lines
418 B
C#
using System.Net;
|
|
using YandexMusic.API.Models.Landing;
|
|
|
|
namespace YandexMusic.API.Requests.Landing;
|
|
|
|
internal class YGetChildrenLandingBuilder : YMusicRequestBuilder<YChildrenLanding?, object>
|
|
{
|
|
public YGetChildrenLandingBuilder(YandexMusicApi api) : base(api) { }
|
|
protected override string Method => WebRequestMethods.Http.Get;
|
|
protected override string PathTemplate => "children-landing/catalogue";
|
|
} |