1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00
Files
Sonarr/NzbDrone.Core/Download/Clients/Nzbget/JsonError.cs
T
2013-03-07 21:39:49 +09:00

11 lines
199 B
C#

using System;
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class JsonError
{
public String Version { get; set; }
public ErrorModel Error { get; set; }
}
}