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