Added the Movie Sender, Movies will be sent to Radarr now #865

This commit is contained in:
Jamie.Rees 2017-06-07 15:07:41 +01:00
commit 4c797733ca
13 changed files with 223 additions and 59 deletions

View file

@ -0,0 +1,21 @@
namespace Ombi.Api.Radarr.Models
{
public class RadarrError
{
public string message { get; set; }
public string description { get; set; }
}
public class RadarrErrorResponse
{
public string propertyName { get; set; }
public string errorMessage { get; set; }
public object attemptedValue { get; set; }
public FormattedMessagePlaceholderValues formattedMessagePlaceholderValues { get; set; }
}
public class FormattedMessagePlaceholderValues
{
public string propertyName { get; set; }
public object propertyValue { get; set; }
}
}