9 lines
266 B
C#
9 lines
266 B
C#
namespace YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
public class YWebApiRequestAttribute : YBasePathRequestAttribute
|
|
{
|
|
public YWebApiRequestAttribute(string method, string url) : base(method, url)
|
|
{
|
|
basePath = "https://music.yandex.ru";
|
|
}
|
|
} |