Add application support for Lidarr, Readarr, Sonarr

This commit is contained in:
nitsua
2020-10-23 00:09:06 -04:00
committed by Qstick
parent feba96e8e0
commit eca9b87571
19 changed files with 997 additions and 2 deletions
@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace NzbDrone.Core.Applications.Readarr
{
public class ReadarrIndexer
{
public int Id { get; set; }
public bool EnableRss { get; set; }
public bool EnableAutomaticSearch { get; set; }
public bool EnableInteractiveSearch { get; set; }
public int Priority { get; set; }
public string Name { get; set; }
public string ImplementationName { get; set; }
public string Implementation { get; set; }
public string ConfigContract { get; set; }
public string InfoLink { get; set; }
public HashSet<int> Tags { get; set; }
public List<ReadarrField> Fields { get; set; }
}
}