Files
YandexMusic/YandexMusic.API/Models/Common/YErrorResponse.cs
2026-04-10 12:12:33 +03:00

8 lines
204 B
C#

namespace YandexMusic.API.Models.Common
{
public class YErrorResponse : Exception
{
public YInvocationInfo InvocationInfo { get; set; }
public YError Error { get; set; }
}
}