Files
YandexMusic/YandexMusic.API/Models/Common/YErrorResponse.cs
2026-04-10 15:05:32 +03:00

7 lines
182 B
C#

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