Files
YandexMusic/YandexMusic.API/Requests/Common/Attributes/YOAuthRequestAttribute.cs
2026-04-10 12:12:33 +03:00

10 lines
294 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";
}
}
}