mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
17 lines
391 B
C#
17 lines
391 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
|
{
|
|
public class ErrorModel
|
|
{
|
|
public String Name { get; set; }
|
|
public Int32 Code { get; set; }
|
|
public String Message { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return String.Format("Name: {0}, Code: {1}, Message: {2}", Name, Code, Message);
|
|
}
|
|
}
|
|
}
|