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