Files
YandexMusic/YandexMusic.API/Requests/Common/Attributes/YOAuthMobileAttribute.cs
2026-04-10 15:05:32 +03:00

9 lines
270 B
C#

namespace YandexMusic.API.Requests.Common.Attributes;
public class YOAuthMobileAttribute : YBasePathRequestAttribute
{
public YOAuthMobileAttribute(string method, string url) : base(method, url)
{
basePath = "https://oauth.mobile.yandex.net";
}
}