Started the Radarr Settings #865

This commit is contained in:
Jamie.Rees 2017-06-01 08:49:14 +01:00
parent 521f7c3ea0
commit 7595ccf6c4
34 changed files with 637 additions and 33 deletions

View file

@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace Ombi.Api.Radarr.Models
{
public class RadarrProfile
{
public string name { get; set; }
public Cutoff cutoff { get; set; }
public List<Item> items { get; set; }
public int id { get; set; }
}
}