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