mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-22 22:16:13 -04:00
Nzbget support added to core
#ND-145 In Progress
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model.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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user