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

9 lines
264 B
C#

namespace YandexMusic.API.Requests.Common.Attributes;
public class YLoginRequestAttribute : YBasePathRequestAttribute
{
public YLoginRequestAttribute(string method, string url) : base(method, url)
{
basePath = "https://login.yandex.ru";
}
}