Updated the Radarr API to support the new V3 endpoints. There's now a new V3 flag on the radarr settings

This commit is contained in:
tidusjar 2020-10-11 00:52:37 +01:00
commit 26b2a574be
24 changed files with 347 additions and 94 deletions

View file

@ -0,0 +1,12 @@
namespace Ombi.Api.Radarr.Models
{
public class RadarrError
{
public string message { get; set; }
}
public class RadarrErrorResponse
{
public string errorMessage { get; set; }
}
}