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