mirror of
https://github.com/Readarr/Readarr
synced 2026-05-06 03:30:27 +02:00
21 lines
No EOL
443 B
C#
21 lines
No EOL
443 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Api.ErrorManagement
|
|
{
|
|
public class ErrorModel
|
|
{
|
|
public string Message { get; set; }
|
|
public string Description { get; set; }
|
|
public object Content { get; set; }
|
|
|
|
public ErrorModel(ApiException exception)
|
|
{
|
|
Message = exception.Message;
|
|
Content = exception.Content;
|
|
}
|
|
|
|
public ErrorModel()
|
|
{
|
|
}
|
|
}
|
|
} |